fix: close modal when navigating on the same page

closes #176

Co-authored-by: sengoku-f <31064651+sengoku-f@users.noreply.github.com>
This commit is contained in:
amrbashir
2025-03-24 15:40:07 +02:00
parent c631c29a09
commit b03fb9484c
2 changed files with 11 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
---
"meilisearch-docsearch": "patch"
---
Close modal when navigating in the same page.

View File

@@ -321,6 +321,12 @@ export const DocSearchModal: Component<DocSearchModalProps> = ({
<a
href={hit.url || "#"}
aria-label={linkToTheResultAriaLabel}
onclick={(e) => {
// close the modal
if (!e.shiftKey && !e.ctrlKey && !e.metaKey) {
onClose && onClose();
}
}}
>
<span class="docsearch-modal-search-hits-item-text-container">
<p