We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 563401a commit 8844e89Copy full SHA for 8844e89
Sources/prostore/prostore.swift
@@ -14,16 +14,16 @@ struct MainSidebarView: View {
14
15
var body: some View {
16
NavigationSplitView {
17
- List(selection: $selected) {
+ List(selection: $selected) {
18
+ NavigationLink(value: SidebarItem.apps) {
19
+ Label("Apps", systemImage: "square.grid.2x2.fill")
20
+ }
21
NavigationLink(value: SidebarItem.signer) {
22
Label("Signer", systemImage: "hammer")
23
}
24
NavigationLink(value: SidebarItem.certificates) {
25
Label("Certificates", systemImage: "key")
26
- NavigationLink(value: SidebarItem.apps) {
- Label("Apps", systemImage: "square.grid.2x2.fill")
- }
27
NavigationLink(value: SidebarItem.about) {
28
Label("About", systemImage: "info.circle")
29
0 commit comments