mirror of
https://github.com/tauri-apps/meilisearch-docsearch.git
synced 2026-01-31 00:45:16 +01:00
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:
5
.changes/close-modal-on-click.md
Normal file
5
.changes/close-modal-on-click.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
"meilisearch-docsearch": "patch"
|
||||
---
|
||||
|
||||
Close modal when navigating in the same page.
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user