refs #4965 Hotfix
gitea/salix/pipeline/head This commit looks good Details

This commit is contained in:
Guillermo Bonet 2023-03-01 14:03:47 +01:00
parent 8e79ad2f50
commit a5d236257b
1 changed files with 3 additions and 2 deletions

View File

@ -66,9 +66,10 @@ module.exports = {
else
value = '---';
let routeFk = labelData.routeFk.toString();
if (labelData.routeFk)
if (labelData.routeFk) {
let routeFk = labelData.routeFk.toString();
value = `${value} [${routeFk.substring(routeFk.length - 3)}]`;
}
return value;
},