diff options
| author | Christian Cleberg <[email protected]> | 2026-04-01 22:20:43 -0500 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2026-04-01 22:20:43 -0500 |
| commit | eeb12de93c4f6fcc5e2f2d58c2061ce84f839cf7 (patch) | |
| tree | 9980f87d0d2cd2692a6db12b8df1e24d8c476f91 /Hutch | |
| parent | 6ce067249e6665151a4e5b66807673f5f1d9a1c4 (diff) | |
| download | hutch-eeb12de93c4f6fcc5e2f2d58c2061ce84f839cf7.tar.gz hutch-eeb12de93c4f6fcc5e2f2d58c2061ce84f839cf7.tar.bz2 hutch-eeb12de93c4f6fcc5e2f2d58c2061ce84f839cf7.zip | |
standardize nav labels
Diffstat (limited to 'Hutch')
| -rw-r--r-- | Hutch/App/RootView.swift | 2 | ||||
| -rw-r--r-- | Hutch/Views/Lists/MailingListListView.swift | 2 | ||||
| -rw-r--r-- | Hutch/Views/More/MoreView.swift | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Hutch/App/RootView.swift b/Hutch/App/RootView.swift index 8d4eef1..f0bde89 100644 --- a/Hutch/App/RootView.swift +++ b/Hutch/App/RootView.swift @@ -89,7 +89,7 @@ struct RootView: View { } .tag(AppState.Tab.tickets) .tabItem { - Label("Tickets", systemImage: "ticket") + Label("Trackers", systemImage: "checklist") } NavigationStack(path: $buildsPath) { diff --git a/Hutch/Views/Lists/MailingListListView.swift b/Hutch/Views/Lists/MailingListListView.swift index 5b8a7b0..eca7343 100644 --- a/Hutch/Views/Lists/MailingListListView.swift +++ b/Hutch/Views/Lists/MailingListListView.swift @@ -115,7 +115,7 @@ struct MailingListListView: View { SRHTLoadingStateView(message: "Loading mailing lists…") } } - .navigationTitle("Lists") + .navigationTitle("Mailing Lists") .task { if viewModel == nil { let vm = MailingListListViewModel(client: appState.client) diff --git a/Hutch/Views/More/MoreView.swift b/Hutch/Views/More/MoreView.swift index c981432..3e2a019 100644 --- a/Hutch/Views/More/MoreView.swift +++ b/Hutch/Views/More/MoreView.swift @@ -15,7 +15,7 @@ struct MoreView: View { List { Section { NavigationLink(value: MoreRoute.lists) { - Label("Lists", systemImage: "list.bullet.rectangle") + Label("Mailing Lists", systemImage: "list.bullet.rectangle") } NavigationLink(value: MoreRoute.pastes) { |
