Skip to content

Commit

Permalink
fix(core): hide double MW search suggestion
Browse files Browse the repository at this point in the history
In rare scenario such as #520, default MW search suggestions will load regardless of the settings.
This simple CSS hack is used to hide in case if it loaded.
This will not be needed when vue search is implemented.
  • Loading branch information
alistair3149 authored Sep 28, 2022
1 parent d53ab29 commit 7bec9ef
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions resources/skins.citizen.search/skins.citizen.search.less
Original file line number Diff line number Diff line change
Expand Up @@ -115,3 +115,9 @@
.citizen-card-show( false );
}
}

// HACK: Hide default MW search suggestion if it somehow loaded
// This should be removed when we switch to vue search
.suggestions {
display: none;
}

0 comments on commit 7bec9ef

Please sign in to comment.