fix: keyboard shortcut to confirm prompts (#2932)

This commit is contained in:
Shlomo 2024-01-30 11:44:00 +02:00 committed by GitHub
parent 62f0dfb302
commit ff9502ff34
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 6 deletions

View File

@ -62,17 +62,16 @@ export default {
window.addEventListener("keydown", (event) => {
if (this.currentPrompt == null) return;
let prompt = this.$refs.currentComponent;
const promptName = this.currentPrompt.prompt;
const prompt = this.$refs[promptName];
// Esc!
if (event.keyCode === 27) {
if (event.code === "Escape") {
event.stopImmediatePropagation();
this.$store.commit("closeHovers");
}
// Enter
if (event.keyCode == 13) {
switch (this.currentPrompt.prompt) {
if (event.code === "Enter") {
switch (promptName) {
case "delete":
prompt.submit();
break;