Skip to content
This repository has been archived by the owner on Dec 13, 2023. It is now read-only.

Commit

Permalink
Fix for #2550 - UI build on main branch is broken due to an undefined…
Browse files Browse the repository at this point in the history
… variable (#2551)

* Fixes #2550 - value is undefined and it should be displayValue instead based on changes from #2536
  • Loading branch information
boney9 authored Oct 29, 2021
1 parent 62e8b1c commit f50d204
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/components/KeyValueTable.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export default function KeyValueTable({ data }) {
classes={{ primary: classes.labelText }}
primary={item.label}
/>
<ListItemText className={classes.value} primary={value} />
<ListItemText className={classes.value} primary={displayValue} />
</ListItem>
);
})}
Expand Down

0 comments on commit f50d204

Please sign in to comment.