Issue with date parameters
Summary:
Hi,
We have date component on UI and when select date value from the calendar and hit on search button, the dates are being passed as one day prior as shown in below.
Console log:
below is the source code of date fields:
<div class="oj-flex-item oj-sm-12 oj-flex oj-md-4">
<oj-input-date label-hint="Transaction Date From" class="oj-md-9"
value="{{ $variables.SearchInputValue.FromDate }}"
converter='{"type": "datetime", "options": null}'>
</oj-input-date>
</div>
<div class="oj-flex-item oj-sm-12 oj-flex oj-md-4">
<oj-input-date label-hint="Transaction Date To" class="oj-md-9"
value="{{ $variables.SearchInputValue.ToDate }}"
converter='{"type": "datetime", "options": null}'>
</oj-input-date>
</div>
Please note that system time zone is in EST.