diff --git a/Tusker/Screens/Report/ReportView.swift b/Tusker/Screens/Report/ReportView.swift index 14b5ede9..9f784981 100644 --- a/Tusker/Screens/Report/ReportView.swift +++ b/Tusker/Screens/Report/ReportView.swift @@ -143,14 +143,16 @@ struct ReportView: View { .appGroupedListRowBackground() Button(action: self.sendReport) { - if isReporting { - Text("Sending Report") + let label = Text(isReporting ? "Sending Report" : "Send Report") + HStack { + label Spacer() - ProgressView() - .progressViewStyle(.circular) - } else { - Text("Send Report") + if isReporting { + ProgressView() + .progressViewStyle(.circular) + } } + .accessibilityLabel(label) } .disabled(isReporting) .appGroupedListRowBackground()