diff --git a/resources/qml/Components/SpeedQualificationResultRow.qml b/resources/qml/Components/SpeedQualificationResultRow.qml index 5a09ed0..c7522bf 100644 --- a/resources/qml/Components/SpeedQualificationResultRow.qml +++ b/resources/qml/Components/SpeedQualificationResultRow.qml @@ -70,7 +70,7 @@ Row { horizontalAlignment: Text.AlignHCenter font.bold: thisData["result_l"] !== undefined && thisData["result_r"] !== undefined && thisData[thisKey] === thisData["result"] - text: control.thisData[thisKey] ?? "" + text: (control.thisData[thisKey] !== undefined && parseInt(control.thisData[thisKey]) > 0) ? control.thisData[thisKey] : "" } }