Make primary action bold: (#1151)
This commit is contained in:
parent
df4a76f9d1
commit
31744067e4
|
@ -204,7 +204,7 @@ struct EditFilterView: View {
|
|||
if isSavingFilter {
|
||||
ProgressView()
|
||||
} else {
|
||||
Text("action.done")
|
||||
Text("action.save").bold()
|
||||
}
|
||||
}
|
||||
.disabled(!canSave)
|
||||
|
|
|
@ -99,8 +99,10 @@ public struct FiltersListView: View {
|
|||
@ToolbarContentBuilder
|
||||
private var toolbarContent: some ToolbarContent {
|
||||
ToolbarItem(placement: .navigationBarTrailing) {
|
||||
Button("action.done") {
|
||||
Button {
|
||||
dismiss()
|
||||
} label: {
|
||||
Text("action.done").bold()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue