Fix to search menu error

This commit is contained in:
root
2023-08-02 21:29:18 +05:30
parent 8f45abf531
commit 4621c2f336
+1 -1
View File
@@ -63,7 +63,7 @@ export default {
},
computed: {
searchSuggestions () {
if (this.searchText.length === 0) {
if (this.searchText?.length === 0) {
return this.actualSuggestions
} else {
return [this.searchText].concat(this.actualSuggestions)