Revert "Fix to search menu error"

This reverts commit 4621c2f336.
This commit is contained in:
root
2023-08-13 18:16:30 +05:30
parent 4621c2f336
commit 0f420eee5d
+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)