@bnsights/bbsf-controls 1.0.19 → 1.0.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -432,12 +432,12 @@
432
432
  var DateValue;
433
433
  if (this.options.SelectMode == 2) {
434
434
  for (var index = 0; index < item.value.length; index++) {
435
- item.value[index] = new Date(item.value[index]);
435
+ item.value[index] = new Date(item.value[index]).toISOString();
436
436
  }
437
437
  DateValue = item.value;
438
438
  }
439
439
  else {
440
- DateValue = new Date(item.value);
440
+ DateValue = new Date(item.value).toISOString();
441
441
  }
442
442
  this.DatePickerFormControl.setValue(DateValue);
443
443
  this.onChangeService.ChangeValue(this.options.Name);