We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58f6800 commit 92ecb40Copy full SHA for 92ecb40
webapp/components/general/ControlPanelTreeItem.js
@@ -227,7 +227,7 @@ const ControlPanelTreeItem = (props) => {
227
228
return (
229
<TreeItem
230
- className={`${classes.treeItem} ${children.length == 0 ? classes.leafTreeItem : ''}`}
+ className={`${classes.treeItem} ${children?.length === 0 ? classes.leafTreeItem : ''}`}
231
nodeId={nodeId}
232
label={(
233
<Grid
webapp/components/general/ExperimentControlPanel.js
@@ -117,7 +117,9 @@ const ExperimentControlPanel = (props) => {
117
118
const flatList = [];
119
instancesMap.forEach((value, key) => {
120
- flatList.push(value);
+ if (value.key.includes(filter)) {
121
+ flatList.push(value);
122
+ }
123
});
124
return flatList;
125
};
0 commit comments