@datarailsshared/datarailsshared 1.4.552 → 1.4.555

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.
@@ -6613,7 +6613,7 @@
6613
6613
  * We need keep local timestamp for Electron Application
6614
6614
  * Issue in electron: when we select date, date select with -1 (if we're choosing 2023, output will be 2022)
6615
6615
  */
6616
- var convertedValue = document.is_electron ? moment$1.unix(value).utc() : moment$1.unix(value).utc();
6616
+ var convertedValue = document.is_electron ? moment$1.unix(value).utc().add('month', 1) : moment$1.unix(value).utc();
6617
6617
  this.innerValue = value ? convertedValue : value;
6618
6618
  if (this.innerValue) {
6619
6619
  this.tryToNormalaizeTimeframe();