Commit e0d8cb10 authored by Don Gagne's avatar Don Gagne

Fix fact references

parent 833c3e9c
...@@ -21,16 +21,16 @@ Column { ...@@ -21,16 +21,16 @@ Column {
VehicleSummaryRow { VehicleSummaryRow {
labelText: "Position Ctl switch:" labelText: "Position Ctl switch:"
valueText: posCtlSwFact.value == 0 ? "Disabled" : fact.valueString valueText: posCtlSwFact.value == 0 ? "Disabled" : posCtlSwFact.valueString
} }
VehicleSummaryRow { VehicleSummaryRow {
labelText: "Position Ctl switch:" labelText: "Loiter switch:"
valueText: loiterSwFact.value == 0 ? "Disabled" : fact.valueString valueText: loiterSwFact.value == 0 ? "Disabled" : loiterSwFact.valueString
} }
VehicleSummaryRow { VehicleSummaryRow {
labelText: "Return switch:" labelText: "Return switch:"
valueText: returnSwFact.value == 0 ? "Disabled" : fact.valueString valueText: returnSwFact.value == 0 ? "Disabled" : returnSwFact.valueString
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment