Skip to content

Commit

Permalink
fix: bug with searchbar display: none
Browse files Browse the repository at this point in the history
  • Loading branch information
fraxken committed Dec 7, 2024
1 parent 3eda228 commit 6b6fcc8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions public/components/searchbar/searchbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,10 @@ export class SearchBar {
self.focusNodeById(this.getAttribute("data-value"));
});
}

if (window.navigation.getAnchor() !== "network--view") {
this.container.style.display = "none";
}
}

addNewSearchText(filterName, searchedValue) {
Expand Down

0 comments on commit 6b6fcc8

Please sign in to comment.