Fix table entity boolean and number type property values (#737)

This commit is contained in:
victor-meng
2021-04-29 17:23:21 -07:00
committed by GitHub
parent 5e0523c7d9
commit 9878bf0d5e
2 changed files with 25 additions and 13 deletions

View File

@@ -328,7 +328,7 @@ export const EditTableEntityPanel: FunctionComponent<EditTableEntityPanelProps>
selectedKey={entity.type}
entityPropertyPlaceHolder={detailedHelp}
entityValuePlaceholder={entity.entityValuePlaceholder}
entityValue={entity.value}
entityValue={entity.value?.toString()}
isEntityTypeDate={entity.isEntityTypeDate}
entityTimeValue={entity.entityTimeValue}
isEntityValueDisable={entity.isEntityValueDisable}