Hey there, I'm just getting started with vmware clarity UI. Currently, I am facing an issue with using datetime-local. I am trying to prepopulate the current date and time in the datetime-local field using ngModel with the format 2017-06-13T13:00. While it does display on the UI, the time is not showing correctly as it's currently lagging behind by 5 hours IST. Any idea where I might be making a mistake? Thanks in advance
HTML component
<clr-input-container>
<label>Start Time</label>
<input type="datetime-local" clrInput [(ngModel)]="start_time" name="start_time" style="width:100%" required />
<!-- <clr-control-helper>Please choose Incident Start Date&Time in DD/MM/YYYY Hr:M:-AM/PM</clr-control-helper> -->
<clr-control-error>This field is required!</clr-control-error>
</clr-input-container>
TS file
start_time = new Date().toISOString().substr(0, 16);