Jonas Björkert пре 1 година
родитељ
комит
f81a2256d6
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      LoopFollow/Alarm/AlarmListView.swift

+ 2 - 2
LoopFollow/Alarm/AlarmListView.swift

@@ -65,7 +65,7 @@ struct AlarmListView: View {
 
 
             // --- ACTIVE ALARMS SECTION ---
             // --- ACTIVE ALARMS SECTION ---
             if !activeAlarms.isEmpty {
             if !activeAlarms.isEmpty {
-                Section(header: Text("Active Alarms")) {
+                Section(header: Text("Active")) {
                     ForEach(activeAlarms) { alarm in
                     ForEach(activeAlarms) { alarm in
                         alarmRow(for: alarm)
                         alarmRow(for: alarm)
                     }
                     }
@@ -74,7 +74,7 @@ struct AlarmListView: View {
 
 
             // --- INACTIVE ALARMS SECTION ---
             // --- INACTIVE ALARMS SECTION ---
             if !inactiveAlarms.isEmpty {
             if !inactiveAlarms.isEmpty {
-                Section(header: Text("Inactive Alarms")) {
+                Section(header: Text("Inactive")) {
                     ForEach(inactiveAlarms) { alarm in
                     ForEach(inactiveAlarms) { alarm in
                         alarmRow(for: alarm)
                         alarmRow(for: alarm)
                             .opacity(0.6)
                             .opacity(0.6)