ui: Fix empty string in revision column (#432)

This commit is contained in:
Bernd Storath
2024-06-10 15:59:18 +02:00
committed by GitHub
parent 52a08acf81
commit a0abd4a4bb

View File

@ -34,6 +34,8 @@ export function formatRegParamsRevision(r: RegParamsRevision) {
return "RP002-1.0.2"; return "RP002-1.0.2";
case RegParamsRevision.RP002_1_0_3: case RegParamsRevision.RP002_1_0_3:
return "RP002-1.0.3"; return "RP002-1.0.3";
case RegParamsRevision.RP002_1_0_4:
return "RP002-1.0.4";
} }
return ""; return "";