1
0
Fork 0
mirror of synced 2024-09-13 07:53:31 +12:00

Removed subtype check as it was causing the builder to crash

This commit is contained in:
Dean 2024-05-21 10:02:44 +01:00
parent 15b86021ee
commit 79fa40f08a

View file

@ -55,7 +55,7 @@ export function getBindings({
) )
} }
const field = Object.values(FIELDS).find( const field = Object.values(FIELDS).find(
field => field.type === schema.type && field.subtype === schema.subtype field => field.type === schema.type
) )
const label = path == null ? column : `${path}.0.${column}` const label = path == null ? column : `${path}.0.${column}`