Skip to content

Commit f403066

Browse files
frontend: vehiclesetup: configuration: accelerometer: FullAccelerometerCalibration: Add Unknown state over empty string
Signed-off-by: Patrick José Pereira <patrickelectric@gmail.com>
1 parent 97c88b0 commit f403066

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/frontend/src/components/vehiclesetup/configuration/accelerometer/FullAccelerometerCalibration.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ export default {
132132
[CalState.SUCCESS]: 'Calibration Successful',
133133
[CalState.FAIL]: 'Calibration Failed',
134134
}
135-
return AccelStateText[Number(this.state)] ?? ''
135+
return AccelStateText[Number(this.state)] ?? 'Unknown state'
136136
},
137137
current_state_3D() {
138138
const AccelStateText: { [key: number]: string } = {

0 commit comments

Comments
 (0)