fix: show empty state for search results, es6

This commit is contained in:
liyasthomas
2021-08-29 10:02:19 +05:30
parent 647599e5aa
commit 5bcee265a6
2 changed files with 19 additions and 12 deletions

View File

@@ -102,11 +102,11 @@ export default defineComponent({
},
methods: {
hideModal() {
this.search = ""
this.$emit("hide-modal")
},
runAction(command) {
invokeAction(command, "path_from_invokeAction")
this.search = ""
this.hideModal()
},
},