mirror of
https://github.com/docker/docs.git
synced 2026-03-27 14:28:47 +07:00
Merge pull request #21360 from dvdksn/fix-guides-filter-unselect
hugo: show all guides when filters are unselected
This commit is contained in:
@@ -83,7 +83,10 @@
|
||||
updateVisible() {
|
||||
const hiddenSet = new Set();
|
||||
// show if no filters have been selected
|
||||
if (this.noFilters()) return;
|
||||
if (this.noFilters()) {
|
||||
this.hidden = [];
|
||||
return;
|
||||
};
|
||||
const guideContainer = this.$refs['guide-container'];
|
||||
const guides = guideContainer.children
|
||||
|
||||
|
||||
Reference in New Issue
Block a user