[bug] fix timezone autocomplete

This commit is contained in:
Andrea Vos 2023-03-05 12:27:07 +01:00
parent 82d3ed822d
commit 16de1f6faf

View File

@ -54,21 +54,26 @@ export default {
switch (e.key) {
case 'ArrowUp':
this.highlighted--;
e.preventDefault();
e.stopPropagation();
break;
case 'ArrowDown':
this.highlighted++;
e.preventDefault();
e.stopPropagation();
break;
case 'Enter':
if (this.highlightedOption) {
this.select(this.highlightedOption);
e.preventDefault();
e.stopPropagation();
}
break;
default:
return;
break;
}
e.preventDefault();
e.stopPropagation();
this.$forceUpdate();
}
},
computed: {