Commit e0d8cb10 authored by Don Gagne's avatar Don Gagne

Fix fact references

parent 833c3e9c
......@@ -21,16 +21,16 @@ Column {
VehicleSummaryRow {
labelText: "Position Ctl switch:"
valueText: posCtlSwFact.value == 0 ? "Disabled" : fact.valueString
valueText: posCtlSwFact.value == 0 ? "Disabled" : posCtlSwFact.valueString
}
VehicleSummaryRow {
labelText: "Position Ctl switch:"
valueText: loiterSwFact.value == 0 ? "Disabled" : fact.valueString
labelText: "Loiter switch:"
valueText: loiterSwFact.value == 0 ? "Disabled" : loiterSwFact.valueString
}
VehicleSummaryRow {
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