fix popover header on vue ListWorkflow breadcrumb

This commit is contained in:
2022-02-01 15:51:42 +01:00
parent 2f5fecf414
commit 2bb718f3ea
2 changed files with 8 additions and 7 deletions

View File

@@ -93,8 +93,9 @@ export default {
},
getPopTitle(step) {
if (step.transitionPrevious != null) {
//console.log(step.transitionPrevious.text);
let freezed = step.isFreezed ? `<i class="fa fa-snowflake-o fa-sm me-1"></i>` : ``;
return `${freezed}${step.currentStep.text}`;
return `${freezed}${step.transitionPrevious.text}`;
}
},
getPopContent(step) {