1
0
forked from test/crm

fix: custom field label not showing

This commit is contained in:
Shariq Ansari 2024-10-01 14:24:14 +05:30
parent 92fcfcebce
commit 1fb5347b94

View File

@ -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