From 82c2ac564aecbc8810af38ad5fb26eaddbb913b1 Mon Sep 17 00:00:00 2001 From: Clement Zhang Date: Mon, 18 Nov 2024 12:12:51 +0100 Subject: [PATCH] multiselect: new item key order {label, value} --- .../apps/editor/settingsPanel/ArrayStaticInputEditor.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/lib/components/apps/editor/settingsPanel/ArrayStaticInputEditor.svelte b/frontend/src/lib/components/apps/editor/settingsPanel/ArrayStaticInputEditor.svelte index 3bd716c881..2d99691027 100644 --- a/frontend/src/lib/components/apps/editor/settingsPanel/ArrayStaticInputEditor.svelte +++ b/frontend/src/lib/components/apps/editor/settingsPanel/ArrayStaticInputEditor.svelte @@ -47,7 +47,7 @@ } else if (subFieldType === 'object') { value.push({}) } else if (subFieldType === 'labeledresource' || subFieldType === 'labeledselect') { - value.push({ value: 'value', label: 'label' }) + value.push({ label: 'label', value: 'value' }) } else if (subFieldType === 'tab-select') { value.push({ id: '', index: 0 }) } else if (