@dataloop-ai/components 0.18.62 → 0.18.63
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
|
@@ -441,13 +441,7 @@ export default defineComponent({
|
|
|
441
441
|
} else {
|
|
442
442
|
this.dateInterval = {
|
|
443
443
|
from: value.from,
|
|
444
|
-
to: new Date(
|
|
445
|
-
value.to.getFullYear(),
|
|
446
|
-
value.to.getMonth(),
|
|
447
|
-
value.to.getDate(),
|
|
448
|
-
23,
|
|
449
|
-
59
|
|
450
|
-
)
|
|
444
|
+
to: new Date(value.to)
|
|
451
445
|
}
|
|
452
446
|
}
|
|
453
447
|
this.$emit('update:model-value', value)
|
|
@@ -330,7 +330,7 @@ export default defineComponent({
|
|
|
330
330
|
display: flex;
|
|
331
331
|
padding: var(--dl-dialog-box-header-padding, 16px);
|
|
332
332
|
border-bottom: var(--dl-dialog-separator);
|
|
333
|
-
height:
|
|
333
|
+
height: fit-content;
|
|
334
334
|
}
|
|
335
335
|
|
|
336
336
|
.content {
|
|
@@ -349,7 +349,7 @@ export default defineComponent({
|
|
|
349
349
|
.footer {
|
|
350
350
|
display: flex;
|
|
351
351
|
padding: var(--dl-dialog-box-footer-padding, 20px 16px);
|
|
352
|
-
height:
|
|
352
|
+
height: fit-content;
|
|
353
353
|
border-top: var(--dl-dialog-separator);
|
|
354
354
|
}
|
|
355
355
|
|