Added float to FIELD_TYPE_MAP ins constants.ts

This commit is contained in:
user1 2023-05-26 11:49:43 -07:00 committed by Kent Keirsey
parent b0892d30a4
commit 3767a453bb

View File

@ -4,6 +4,7 @@ export const HANDLE_TOOLTIP_OPEN_DELAY = 500;
export const FIELD_TYPE_MAP: Record<string, FieldType> = {
integer: 'integer',
float: 'float',
number: 'float',
string: 'string',
boolean: 'boolean',