summaryrefslogtreecommitdiff
path: root/Hutch/Views/Tickets
diff options
context:
space:
mode:
Diffstat (limited to 'Hutch/Views/Tickets')
-rw-r--r--Hutch/Views/Tickets/TicketDetailView.swift4
1 files changed, 3 insertions, 1 deletions
diff --git a/Hutch/Views/Tickets/TicketDetailView.swift b/Hutch/Views/Tickets/TicketDetailView.swift
index 0631d7f..6ed5df0 100644
--- a/Hutch/Views/Tickets/TicketDetailView.swift
+++ b/Hutch/Views/Tickets/TicketDetailView.swift
@@ -424,7 +424,9 @@ private struct EventRow: View {
.padding(.horizontal)
.padding(.vertical, 8)
.alert("System Status Change", isPresented: $isShowingSystemStatusInfo) {
- Button("OK", role: .cancel) {}
+ Button("OK", role: .cancel) {
+ // Alert dismissal is implicit; no additional action required.
+ }
} message: {
Text("This status change was recorded automatically or without a named user attached to the event.")
}