[#7731] fixed file field settings variable name

This commit is contained in:
Gani Georgiev
2026-06-08 09:23:25 +03:00
parent aee115a99f
commit bff6b4c3ab
9 changed files with 16 additions and 11 deletions
+2 -2
View File
@@ -277,9 +277,9 @@ export function settings(data) {
onchange: (e) => {
const maxSelect = parseInt(e.target.value, 10);
if (maxSelect > 1) {
props.field.maxSelect = maxSelect;
data.field.maxSelect = maxSelect;
} else {
props.field.maxSelect = 1;
data.field.maxSelect = 1;
}
},
}),