Use '#' instead of 'Hashtags' for t-tag filter label

This commit is contained in:
Lemon
2026-04-02 12:37:31 -07:00
parent f6677d1e5d
commit de3a4dfb4f
+1 -1
View File
@@ -35,7 +35,7 @@ function formatTimestamp(value: string): string {
/** Friendly display name for tag filter letters. */
function tagFilterLabel(letter: string): string {
if (letter === 't') return 'Hashtags';
if (letter === 't') return '#';
return `#${letter}`;
}