Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
Fred Lefévère-Laoide authored and Fred Lefévère-Laoide committed Mar 8, 2024
1 parent 438da09 commit eda8cbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/taipy/src/DataNodeViewer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ const DataNodeViewer = (props: DataNodeViewerProps) => {

// Datanode data
const dtType = props.data && props.data[DatanodeDataProps.type];
const dtValue = (props.data && props.data[DatanodeDataProps.value]) ?? ((dtType == "float") ? null : undefined);
const dtValue = (props.data && props.data[DatanodeDataProps.value]) ?? (dtType == "float" ? null : undefined);
const dtTabular = (props.data && props.data[DatanodeDataProps.tabular]) ?? false;
const dtError = props.data && props.data[DatanodeDataProps.error];
const [dataValue, setDataValue] = useState<RowValue | Date>();
Expand Down

0 comments on commit eda8cbe

Please sign in to comment.