Fix lightbox Escape navigating away, sidebar profile hidden at large font

This commit is contained in:
Jure
2026-03-24 15:14:12 +01:00
parent 6b77765e1c
commit 9a09e464b5
3 changed files with 11 additions and 4 deletions

View File

@@ -43,7 +43,7 @@ export async function notifyMention(authorName: string, preview: string): Promis
if (!(await ensurePermission())) return;
sendNotification({
title: `${authorName} mentioned you`,
body: preview.slice(0, 120),
body: preview.slice(0, 120) || "New mention",
});
}