Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -680,6 +680,7 @@
Utils.searchRelevance(app.name, searchValue)*(app.shortName?1:2) +
(app.shortName?Utils.searchRelevance(app.shortName, searchValue):0) + // if we have shortname, match on that as well
Utils.searchRelevance(app.description, searchValue)/5 + // match on description, but pay less attention
(app.author?Utils.searchRelevance(app.author, searchValue)/3:0)+ //match by author, but less attention as well
((app.tags && app.tags.includes(searchValue))?10:0)
}));
} else {
Expand Down Expand Up @@ -1406,7 +1407,7 @@
showToast("Error creating screenshot: "+err,"error");
});
}
}));

Check warning on line 1410 in js/index.js

View workflow job for this annotation

GitHub Actions / test

Expected indentation of 4 spaces but found 2
});

// Open terminal button
Expand Down