calendar download, date input validate, nc talk notification

This commit is contained in:
Matthias Hochmeister
2026-03-04 15:01:26 +01:00
parent d27d2931a5
commit fb5acd3d52
4 changed files with 86 additions and 9 deletions

View File

@@ -102,7 +102,11 @@ const NotificationBell: React.FC = () => {
}
handleClose();
if (n.link) {
navigate(n.link);
if (n.link.startsWith('http://') || n.link.startsWith('https://')) {
window.open(n.link, '_blank');
} else {
navigate(n.link);
}
}
};