Merge branch 'mobile-fix-notebook-tag-sorting-filter' into beta

This commit is contained in:
Ammar Ahmed
2025-08-20 08:49:36 +05:00
2 changed files with 2 additions and 2 deletions

View File

@@ -66,7 +66,7 @@ export const SideMenuNotebooks = () => {
if (lastQuery.current) {
db.lookup
.notebooks(lastQuery.current)
.sorted()
.sorted(db.settings.getGroupOptions("notebooks"))
.then((filtered) => {
setFilteredNotebooks(filtered);
});

View File

@@ -220,7 +220,7 @@ export const SideMenuTags = () => {
if (lastQuery.current) {
db.lookup
.tags(lastQuery.current.trim())
.sorted()
.sorted(db.settings.getGroupOptions("tags"))
.then(async (filtered) => {
setFilteredTags(filtered);
});