mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-25 11:02:48 +02:00
Fix avatar service not returning generated image on network error. Fix padding and make nav buttons private.
This commit is contained in:
+3
-1
@@ -36,7 +36,9 @@ struct RoomNotificationSettingsHeaderView: View {
|
||||
}
|
||||
}
|
||||
Spacer()
|
||||
}.padding(.top, 36)
|
||||
}
|
||||
.padding(.top, 36)
|
||||
.padding(.bottom, 20)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -25,7 +25,7 @@ struct RoomNotificationSettingsView: View {
|
||||
let presentedModally: Bool
|
||||
|
||||
@ViewBuilder
|
||||
var leftButton: some View {
|
||||
private var leftButton: some View {
|
||||
if presentedModally {
|
||||
SwiftUI.Button(VectorL10n.cancel) {
|
||||
viewModel.process(viewAction: .cancel)
|
||||
@@ -33,7 +33,7 @@ struct RoomNotificationSettingsView: View {
|
||||
}
|
||||
}
|
||||
|
||||
var rightButton: some View {
|
||||
private var rightButton: some View {
|
||||
Button(VectorL10n.save) {
|
||||
viewModel.process(viewAction: .save)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user