aboutsummaryrefslogtreecommitdiff
path: root/iosApp/iosApp/Devices/DeviceRow.swift
diff options
context:
space:
mode:
Diffstat (limited to 'iosApp/iosApp/Devices/DeviceRow.swift')
-rw-r--r--iosApp/iosApp/Devices/DeviceRow.swift10
1 files changed, 5 insertions, 5 deletions
diff --git a/iosApp/iosApp/Devices/DeviceRow.swift b/iosApp/iosApp/Devices/DeviceRow.swift
index 0439fff..ee3298d 100644
--- a/iosApp/iosApp/Devices/DeviceRow.swift
+++ b/iosApp/iosApp/Devices/DeviceRow.swift
@@ -172,9 +172,9 @@ struct DeviceRow: View {
Label("details", systemImage: "info.circle")
}
- //let reports = Button { callback(.reports) } label: {
- // Label("reports", systemImage: "clock")
- //}
+ let reports = Button { callback(.reports) } label: {
+ Label("reports", systemImage: "clock")
+ }
let commands = Button { callback(.commands) } label: {
Label("commands", systemImage: "paperplane")
@@ -182,12 +182,12 @@ struct DeviceRow: View {
if isCell {
commands
- // reports
+ reports
details
} else {
Group {
details
- // reports
+ reports
commands
}
.frame(maxWidth: .infinity)