feat: Working on ignoring flagged measurements that are zero for optional values.

This commit is contained in:
2024-06-10 16:29:33 -04:00
parent a6bfbd6877
commit 3bfcc8a0b2
6 changed files with 75 additions and 32 deletions

View File

@@ -390,6 +390,7 @@ public struct EquipmentMeasurementFormView: View {
prompt: Text(title)
)
.numberPad()
.onSubmit { send(.submitField) }
} else {
TextField(
title,
@@ -398,6 +399,7 @@ public struct EquipmentMeasurementFormView: View {
prompt: Text(title)
)
.decimalPad()
.onSubmit { send(.submitField) }
}
}
}