Skip to content

Commit fd60b9d

Browse files
authored
fix(Versions): should not show nodes withot version (#1653)
1 parent 9377841 commit fd60b9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/containers/Versions/groupNodes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ export const getOtherNodes = (
112112
return undefined;
113113
}
114114

115-
const otherNodes = nodes.filter(({Roles}) => !Roles);
115+
const otherNodes = nodes.filter(({Roles, Version}) => !Roles && Version);
116116
const otherNodesDividedByVersion = groupBy(otherNodes, 'Version');
117117

118118
return Object.keys(otherNodesDividedByVersion).map((version) => {

0 commit comments

Comments
 (0)