1
0
Fork 0
mirror of synced 2024-09-28 15:21:28 +12:00

Display multi boolean

This commit is contained in:
Adria Navarro 2024-09-25 17:31:16 +02:00
parent 863ff4d9f9
commit 58a51207f3

View file

@ -19,6 +19,15 @@ const columnTypeManyOverrides = {
return result return result
}, },
}, },
[FieldType.BOOLEAN]: {
overridedType: FieldType.STRING,
parser: value => {
if (value) {
return true
}
return false
},
},
} }
export function enrichSchemaWithRelColumns(schema) { export function enrichSchemaWithRelColumns(schema) {