Display multi boolean

This commit is contained in:
Adria Navarro 2024-09-25 17:31:16 +02:00
parent 863ff4d9f9
commit 58a51207f3
1 changed files with 9 additions and 0 deletions

View File

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