1
0
Fork 0
mirror of synced 2024-09-18 10:20:11 +12:00

Merge pull request #13733 from Budibase/fix/remove-formula-column-subtype-check

Removed subtype check when creating a formula column
This commit is contained in:
deanhannigan 2024-05-21 11:06:59 +01:00 committed by GitHub
commit 5247aa6900
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -56,7 +56,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}`