Fix type name on formula bindings

This commit is contained in:
Adria Navarro 2024-04-26 10:43:44 +02:00
parent d3425a856f
commit 063bdb1d7b
1 changed files with 1 additions and 1 deletions

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 => field.type === schema.type && field.subtype === schema.subtype
) )
const label = path == null ? column : `${path}.0.${column}` const label = path == null ? column : `${path}.0.${column}`