diff --git a/Swiftfin/Views/SelectUserView/Components/ServerSelectionMenu.swift b/Swiftfin/Views/SelectUserView/Components/ServerSelectionMenu.swift index 0c745794..a14f754b 100644 --- a/Swiftfin/Views/SelectUserView/Components/ServerSelectionMenu.swift +++ b/Swiftfin/Views/SelectUserView/Components/ServerSelectionMenu.swift @@ -80,7 +80,7 @@ extension SelectUserView { Color.tertiarySystemBackground } - Group { + HStack { switch serverSelection { case .all: Label("All Servers", systemImage: "person.2.fill") @@ -89,6 +89,10 @@ extension SelectUserView { Label(server.name, systemImage: "server.rack") } } + + Image(systemName: "chevron.up.chevron.down") + .foregroundStyle(.secondary) + .font(.subheadline.weight(.semibold)) } .font(.body.weight(.semibold)) .foregroundStyle(Color.primary)