feat(command-palette): clear prompt on palette close

This commit is contained in:
Corentin Thomasset 2023-10-31 20:19:09 +01:00
parent 015c673e09
commit 1569e5c1ef
No known key found for this signature in database
GPG key ID: DBD997E935996158

View file

@ -37,6 +37,7 @@ function open() {
function close() { function close() {
isModalOpen.value = false; isModalOpen.value = false;
searchPrompt.value = '';
} }
const selectedOptionIndex = ref(0); const selectedOptionIndex = ref(0);