diff --git a/web/src/pages/Shortcuts.tsx b/web/src/pages/Shortcuts.tsx index f2a570896..5bd975cc3 100644 --- a/web/src/pages/Shortcuts.tsx +++ b/web/src/pages/Shortcuts.tsx @@ -61,6 +61,12 @@ const shortcutExamples = [ description: "Match one or more exact tags.", icon: TagsIcon, }, + { + title: "Untagged", + filter: "size(tags) == 0", + description: "Memos without any tags.", + icon: TagsIcon, + }, { title: "Archive tree", filter: 'tags.exists(t, t.startsWith("archive"))', @@ -155,6 +161,7 @@ const filterFields = [ "sets.contains(tags, [...])", "sets.intersects(tags, [...])", "sets.equivalent(tags, [...])", + "size(tags) == ...", "size(content) > ...", "has_task_list", "has_incomplete_tasks",