Store and forwarding

This commit is contained in:
Garth Vander Houwen 2023-08-18 00:12:59 -07:00
parent 8fe3197928
commit 55080fa91f
6 changed files with 47 additions and 4 deletions

View file

@ -103,7 +103,6 @@ struct DetectionSensorConfig: View {
Section(header: Text("update.interval")) {
Picker("Minimum time between detection broadcasts", selection: $minimumBroadcastSecs) {
Text("Default").tag(0)
ForEach(UpdateIntervals.allCases) { ui in
Text(ui.description).tag(ui.rawValue)
}
@ -113,7 +112,7 @@ struct DetectionSensorConfig: View {
.font(.caption)
Picker("State Broadcast Interval", selection: $stateBroadcastSecs) {
Text("Default").tag(0)
Text("Never").tag(0)
ForEach(UpdateIntervals.allCases) { ui in
Text(ui.description).tag(ui.rawValue)
}