Skip to content
Snippets Groups Projects
Commit a29be0cd authored by Aleix Pol Gonzalez's avatar Aleix Pol Gonzalez :penguin:
Browse files

Don't try to search for "" in the CategoryPage

BUG: 329800
parent 3d342ec5
No related branches found
No related tags found
No related merge requests found
......@@ -30,6 +30,8 @@ Page {
property alias categories: categoryModel
function searchFor(text) {
if(text == "")
return;
if(category)
Navigation.openApplicationList(category.icon, i18n("Search in '%1'...", category.name), category, text)
else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment