@tekkare/auriga 0.2.120 → 0.2.121
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/dist/module.json
CHANGED
|
@@ -419,7 +419,7 @@ export default defineComponent({
|
|
|
419
419
|
...new Set(element_table_copy.value.concat(props.default_select))
|
|
420
420
|
];
|
|
421
421
|
}
|
|
422
|
-
selected_items.value = props.default_select;
|
|
422
|
+
selected_items.value = [...new Set(props.default_select)];
|
|
423
423
|
}
|
|
424
424
|
}
|
|
425
425
|
);
|
|
@@ -427,7 +427,7 @@ export default defineComponent({
|
|
|
427
427
|
() => props.default_select,
|
|
428
428
|
(new_selected) => {
|
|
429
429
|
if (new_selected && new_selected.length > 0) {
|
|
430
|
-
selected_items.value =
|
|
430
|
+
selected_items.value = [...new Set(props.default_select)];
|
|
431
431
|
}
|
|
432
432
|
}
|
|
433
433
|
);
|