@dataloop-ai/components 0.18.21 → 0.18.23
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/package.json
CHANGED
|
@@ -249,7 +249,7 @@ export default defineComponent({
|
|
|
249
249
|
|
|
250
250
|
this.dateInterval = { from: date, to: date }
|
|
251
251
|
|
|
252
|
-
if (this.singleSelection) {
|
|
252
|
+
if (!this.singleSelection) {
|
|
253
253
|
this.isSelectionMode = true
|
|
254
254
|
} else {
|
|
255
255
|
this.updateModelValue(this.dateInterval)
|
|
@@ -297,7 +297,10 @@ export default defineComponent({
|
|
|
297
297
|
}
|
|
298
298
|
}
|
|
299
299
|
|
|
300
|
-
this.dateInterval = {
|
|
300
|
+
this.dateInterval = {
|
|
301
|
+
from: this.dateInterval.from,
|
|
302
|
+
to: date
|
|
303
|
+
}
|
|
301
304
|
}
|
|
302
305
|
}
|
|
303
306
|
})
|
|
@@ -442,9 +442,9 @@ export default defineComponent({
|
|
|
442
442
|
this.dateInterval = {
|
|
443
443
|
from: value.from,
|
|
444
444
|
to: new Date(
|
|
445
|
-
value.
|
|
446
|
-
value.
|
|
447
|
-
value.
|
|
445
|
+
value.to.getFullYear(),
|
|
446
|
+
value.to.getMonth(),
|
|
447
|
+
value.to.getDate(),
|
|
448
448
|
23,
|
|
449
449
|
59
|
|
450
450
|
)
|