Skip to content

Commit

Permalink
fix(new-ui): use actual ids in selectors instead of fulltitle
Browse files Browse the repository at this point in the history
  • Loading branch information
shadowusr committed Oct 3, 2024
1 parent 8a06b4e commit e8701eb
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 e8701eb

Please sign in to comment.