Can someone help me figure out how to update the value of textbox retentionx with '0OTHXXGK1DCA19JUN-thank you'? Currently, the text in the textbox is only displaying '0OTHXXGK1DCA19JUN-thank' and isn't fully visible.
Code snippet from Main.ts:
In the main.ts file, there is a constant variable defined as follows:
const retentionDate = '0OTHXXGK1DCA' + datesService.getNow().add(179, 'days').format('DDMMM').toUpperCase() + '-thank you';
This variable is then used to populate the 'retentionx' field in a modal view using the LayerService.
Snippet from PNRView.html:
<label>{{_t 'Retention'}}</label>
<input type="text" id="{{new-random 'retention-field'}}"
class="not-empty form-control input-form retention-field-cl"
value={{retentionx}}>