Hide ingredient search results when there is no input

This commit is contained in:
Christopher C. Wells 2021-01-31 14:23:54 -08:00
parent 3695810fe7
commit 00b7d7f3f7
1 changed files with 3 additions and 0 deletions

View File

@ -67,6 +67,9 @@
this.searching = true;
});
}
else {
this.searching = false;
}
},
['@focusout.debounce.200ms']() {
this.searching = false;