fix(web): do not notify on patch releases (#22591)

This commit is contained in:
Jason Rasmussen
2025-10-06 12:00:37 -05:00
committed by GitHub
parent b06b8ceef6
commit 50ac27238e
4 changed files with 49 additions and 3 deletions

View File

@@ -25,7 +25,7 @@ export interface Events {
on_person_thumbnail: (personId: string) => void;
on_server_version: (serverVersion: ServerVersionResponseDto) => void;
on_config_update: () => void;
on_new_release: (newRelase: ReleaseEvent) => void;
on_new_release: (newRelease: ReleaseEvent) => void;
on_session_delete: (sessionId: string) => void;
on_notification: (notification: NotificationDto) => void;
}