We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87aff58 commit 2738fd8Copy full SHA for 2738fd8
1 file changed
adminforth/spa/src/components/ResourceForm.vue
@@ -308,6 +308,9 @@ onMounted(() => {
308
if (column.type === 'json' && currentValues.value) {
309
if (column.isArray?.enabled) {
310
// if value is null or undefined, we should set it to empty array
311
+ if (column.showIn?.create === false) {
312
+ return;
313
+ }
314
if (!currentValues.value[column.name]) {
315
currentValues.value[column.name] = [];
316
} else {
0 commit comments