@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.
- package/bundles/datarailsshared-datarailsshared.umd.js +1 -1
- package/bundles/datarailsshared-datarailsshared.umd.js.map +1 -1
- package/datarailsshared-datarailsshared-1.4.555.tgz +0 -0
- package/esm2015/lib/dr-inputs/date-pickers/dr-date-picker/dr-date-picker.component.js +2 -2
- package/fesm2015/datarailsshared-datarailsshared.js +1 -1
- package/fesm2015/datarailsshared-datarailsshared.js.map +1 -1
- package/package.json +1 -1
- package/datarailsshared-datarailsshared-1.4.552.tgz +0 -0
|
@@ -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();
|