Skip to content
This repository has been archived by the owner on Jan 21, 2024. It is now read-only.

fix: the global search keyboard event is not removed when the component is unmounted #767

Merged
merged 3 commits into from
Dec 13, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/layouts/BasicLayout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ onMounted(() => {
});

onUnmounted(() => {
document.addEventListener("keydown", handleGlobalSearchKeybinding);
document.removeEventListener("keydown", handleGlobalSearchKeybinding);
});

// Generate menus by routes
Expand Down