Browse Source

Convert array string to array type

master
Mel O'Hagan 4 years ago
parent
commit
84100ab0cd
  1. 3
      packages/server/src/api/controllers/row/utils.js

3
packages/server/src/api/controllers/row/utils.js

@ -64,6 +64,9 @@ exports.validate = async ({ tableId, row, table }) => {
// Validate.js doesn't seem to handle array
if (type === FieldTypes.ARRAY && row[fieldName]) {
if (row[fieldName].length) {
if (!Array.isArray(row[fieldName])) {
row[fieldName] = row[fieldName].split(",")
}
row[fieldName].map(val => {
if (
!constraints.inclusion.includes(val) &&

Loading…
Cancel
Save