From 71b653dcacc122fff6fe84047779662a077c51f8 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev <haiodo@users.noreply.github.com> Date: Thu, 24 Aug 2023 22:43:59 +0700 Subject: [PATCH] Qfix for talent import (#3625) Signed-off-by: Andrey Sobolev <haiodo@gmail.com> --- models/all/src/version.json | 2 +- plugins/view-resources/src/components/EnumArrayEditor.svelte | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/models/all/src/version.json b/models/all/src/version.json index 10c8aae526..e8364c8f59 100644 --- a/models/all/src/version.json +++ b/models/all/src/version.json @@ -1 +1 @@ -{ "major": 0, "minor": 6, "patch": 112 } +{ "major": 0, "minor": 6, "patch": 120 } \ No newline at end of file diff --git a/plugins/view-resources/src/components/EnumArrayEditor.svelte b/plugins/view-resources/src/components/EnumArrayEditor.svelte index ffd08f03c6..451b3de5c5 100644 --- a/plugins/view-resources/src/components/EnumArrayEditor.svelte +++ b/plugins/view-resources/src/components/EnumArrayEditor.svelte @@ -43,7 +43,7 @@ </script> <DropdownLabels - selected={[...value] ?? []} + selected={[...(value ?? [])]} {items} {label} useFlexGrow={true}