We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a745553 + 2738fd8 commit f158197Copy full SHA for f158197
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