Skip to content

Commit f0a545f

Browse files
committed
fix(Healthcheck): don't display reasonsItems in issues viewer
1 parent bcd81e5 commit f0a545f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/containers/Tenant/Diagnostics/Healthcheck/IssuesViewer/IssuesViewer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const issueBlock = cn('issue');
3030

3131
const IssueRow = ({data, treeLevel, active, setInfoForActive, onClick}) => {
3232
// eslint-disable-next-line no-unused-vars
33-
const {id, status, message, type, ...rest} = data;
33+
const {id, status, message, type, reasonsItems, ...rest} = data;
3434

3535
useEffect(() => {
3636
if (active) {

0 commit comments

Comments
 (0)