Commit 6903053

derdilla <82763757+NobodyForNothing@users.noreply.github.com>
2024-06-22 18:15:41
fix unable to submit bluetooth measurement through form
Signed-off-by: derdilla <82763757+NobodyForNothing@users.noreply.github.com>
1 parent 980f7c4
Changed files (1)
app
lib
components
app/lib/components/dialoges/add_measurement_dialoge.dart
@@ -127,6 +127,7 @@ class _AddEntryDialogeState extends State<AddEntryDialoge> {
 
   /// Sets fields to values in a [record].
   void _loadFields(BloodPressureRecord? record) {
+    _measurementFormActive = true;
     time = record?.creationTime ?? DateTime.now();
     if (record?.needlePin != null) needlePin = record?.needlePin;
     if (record?.systolic != null) sysController.text = record!.systolic!.toString();