feat: add show_default_value attribute to input field in UserFieldFormDialog

This commit is contained in:
CaptainB 2025-03-25 17:57:59 +08:00
parent 83140b5f1d
commit 3594fdadfa

View File

@ -117,7 +117,7 @@ const currentRow = computed(() => {
return currentItem.value
}
} else {
return { input_type: 'TextInput', required: false, attrs: { maxlength: 200, minlength: 0 } }
return { input_type: 'TextInput', required: false, attrs: { maxlength: 200, minlength: 0 }, show_default_value: true }
}
})
const currentIndex = ref(null)