Display multi boolean
This commit is contained in:
parent
863ff4d9f9
commit
58a51207f3
|
@ -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) {
|
||||||
|
|
Loading…
Reference in New Issue