Add Tag Group symbol in settings

This commit is contained in:
Thomas Ricouard 2023-07-19 07:50:19 +02:00
parent a2fe0511e0
commit 8ace002e4a

View file

@ -268,7 +268,7 @@ struct SettingsTabs: View {
private var tagGroupsView: some View {
Form {
ForEach(preferences.tagGroups, id: \.self) { group in
Text(group.title)
Label(group.title, systemImage: group.sfSymbolName)
}
.onDelete { indexes in
if let index = indexes.first {