Skip to content

Commit

Permalink
Fix ObjectTable to show false props
Browse files Browse the repository at this point in the history
  • Loading branch information
Tuomo Ala-Vannesluoma committed Aug 21, 2023
1 parent 19e6469 commit b92eb1e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@
- Fix retry on endpoint change
- Fix querying with parent instance id
- Fix loading custom instance content for child workflow
- Fix state variables showing false values

## 8.0.0 (2022-06-09)

Expand Down
2 changes: 1 addition & 1 deletion nflow-explorer-ng/src/component/ObjectTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ function ObjectTable(props: {
<TableBody>
{props.columns.map(
(column, index) =>
props.object[column.field] && (
column.field in props.object && (
<TableRow key={index}>
<TableCell>{column.headerName}</TableCell>
<BodyCell
Expand Down

0 comments on commit b92eb1e

Please sign in to comment.