We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 49ff5fa + b228f4a commit e6e4824Copy full SHA for e6e4824
1 file changed
adminforth/spa/src/components/ResourceForm.vue
@@ -308,8 +308,8 @@ 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;
+ if (column.showIn?.[mode.value] === false) {
+ return;
313
}
314
if (!currentValues.value[column.name]) {
315
currentValues.value[column.name] = [];
0 commit comments