fix(core): hide double MW search suggestion

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.
This commit is contained in:
alistair3149 2022-09-28 17:02:15 -04:00 committed by GitHub
parent d53ab2911b
commit 7bec9ef10b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
}