Fix unselecting a command

This commit is contained in:
kolaente 2021-05-30 17:02:36 +02:00
parent 0fcab30629
commit 1cebe3ca8b
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 12 additions and 2 deletions

View File

@ -14,7 +14,7 @@
@keyup="search"
ref="searchInput"
@keydown.down.prevent="() => select(0, 0)"
@keyup.prevent.delete="() => selectedCmd = null"
@keyup.prevent.delete="unselectCmd"
@keyup.prevent.enter="doCmd"
/>
</div>
@ -136,7 +136,10 @@ export default {
return this.search === '' || Object.keys(this.results).length === 0
},
loading() {
return this.taskService.loading
return this.taskService.loading ||
this.listService.loading ||
this.namespaceService.loading ||
this.teamService.loading
},
placeholder() {
if (this.selectedCmd !== null) {
@ -284,6 +287,13 @@ export default {
elems.focus()
},
unselectCmd() {
if (this.query !== '') {
return
}
this.selectedCmd = null
},
},
}
</script>