We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c1d0c8 commit 5619281Copy full SHA for 5619281
1 file changed
TablePro/Views/Connection/WelcomeWindowView.swift
@@ -681,11 +681,16 @@ struct WelcomeWindowView: View {
681
Button {
682
moveConnections(targets, toGroup: group.id)
683
} label: {
684
- if !group.color.isDefault {
685
- Label(group.name, systemImage: "circle.fill")
686
- .foregroundStyle(group.color.color)
687
- } else {
+ HStack {
+ if !group.color.isDefault {
+ Image(systemName: "circle.fill")
+ .foregroundStyle(group.color.color)
688
+ }
689
Text(group.name)
690
+ if currentGroupId == group.id {
691
+ Spacer()
692
+ Image(systemName: "checkmark")
693
694
}
695
696
.disabled(currentGroupId == group.id)
0 commit comments