diff --git a/package.json b/package.json index f885f611..65b34b4e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@sysvale/cuida", - "version": "3.146.0", + "version": "3.146.1", "description": "A design system built by Sysvale, using storybook and Vue components", "repository": { "type": "git", diff --git a/src/components/Multiselect.vue b/src/components/Multiselect.vue index 22068310..908ce7c3 100644 --- a/src/components/Multiselect.vue +++ b/src/components/Multiselect.vue @@ -401,9 +401,7 @@ export default { }, mounted() { - if (this.modelValue === null || this.modelValue.length === 0) { - return; - } + if (!this.modelValue || this.modelValue.length === 0) return; this.selectedValue = this.modelValue; this.updateRenderOptions();