Skip to content

Commit 3e458b9

Browse files
fix: Update window title to include full 'GitHub Security Alerts' branding
1 parent 7226ec5 commit 3e458b9

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src-tauri/src/tray.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@ pub async fn update_tray_icon(
5757

5858
if let Some(window) = app.get_webview_window("main") {
5959
let title = if !has_repos {
60-
"GitHub Alerts - Configure repositories".to_string()
60+
"GitHub Security Alerts - Configure repositories".to_string()
6161
} else if alert_count > 0 {
62-
format!("GitHub Alerts - {} alert(s)", alert_count)
62+
format!("GitHub Security Alerts - {} alert(s)", alert_count)
6363
} else {
64-
"GitHub Alerts".to_string()
64+
"GitHub Security Alerts".to_string()
6565
};
6666
let _ = window.set_title(&title);
6767
}

src/app/shared/components/header/header.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div class="header">
22
<div class="header-left" (click)="showAlerts()" style="cursor: pointer">
33
<i class="ti ti-shield-half-filled logo"></i>
4-
<span class="title">GitHub Alerts</span>
4+
<span class="title">GitHub Security Alerts</span>
55
</div>
66
<div class="header-right" *ngIf="authenticated">
77
<button

0 commit comments

Comments
 (0)