From e8942d13a95f0b1f3adeb5aaff75f0c5edc445c6 Mon Sep 17 00:00:00 2001 From: Igor Vinicius Date: Tue, 7 Oct 2025 15:46:01 -0300 Subject: [PATCH 1/2] =?UTF-8?q?refactor:=20Realiza=20corre=C3=A7=C3=A3o=20?= =?UTF-8?q?para=20considerar=20caso=20de=20modelValue=20undefined?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Multiselect.vue | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/components/Multiselect.vue b/src/components/Multiselect.vue index 220683105..908ce7c3a 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(); From a5cc2a2d168f1279435c66e4546d9592dc6a3f4e Mon Sep 17 00:00:00 2001 From: Igor Vinicius Date: Tue, 7 Oct 2025 15:46:10 -0300 Subject: [PATCH 2/2] =?UTF-8?q?chore:=20Atualiza=20vers=C3=A3o=20do=20cuid?= =?UTF-8?q?a?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f885f6117..65b34b4e6 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",