Skip to content

Commit

Permalink
fix: custom field label not showing
Browse files Browse the repository at this point in the history
  • Loading branch information
shariquerik committed Oct 1, 2024
1 parent 92fcfce commit 1fb5347
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/Settings/SidePanelModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1fb5347

Please sign in to comment.