From 1fb5347b94bf206c5e091f08ee126a75227b41d6 Mon Sep 17 00:00:00 2001 From: Shariq Ansari Date: Tue, 1 Oct 2024 14:24:14 +0530 Subject: [PATCH] fix: custom field label not showing --- frontend/src/components/Settings/SidePanelModal.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/Settings/SidePanelModal.vue b/frontend/src/components/Settings/SidePanelModal.vue index a661305b..185b2545 100644 --- a/frontend/src/components/Settings/SidePanelModal.vue +++ b/frontend/src/components/Settings/SidePanelModal.vue @@ -134,7 +134,7 @@ function saveChanges() { _sections.forEach((section) => { if (!section.fields) return section.fields = section.fields - .map((field) => field.name || field.fieldname) + .map((field) => field.fieldname || field.name) .filter(Boolean) }) loading.value = true