Skip to content

Commit

Permalink
fix(new-ui): use actual ids in selectors instead of fulltitle (#607)
Browse files Browse the repository at this point in the history
  • Loading branch information
shadowusr authored Oct 8, 2024
1 parent 503a9a5 commit 2e8f13a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export const getTreeViewItems = createSelector(
diffImg
};

if (!browsersState[data.fullTitle].shouldBeShown) {
if (!browsersState[browserData.id].shouldBeShown) {
return null;
}

Expand All @@ -87,7 +87,7 @@ export const getTreeViewItems = createSelector(
status: suiteData.status
};

if (!suitesState[data.fullTitle].shouldBeShown) {
if (!suitesState[suiteData.id].shouldBeShown) {
return null;
}

Expand Down

0 comments on commit 2e8f13a

Please sign in to comment.