mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
workflow: fix some stuffs
This commit is contained in:
parent
c14101714c
commit
f648a9351b
@ -26,7 +26,7 @@
|
||||
:title="getPopTitle(step)"
|
||||
:data-bs-content="getPopContent(step)">
|
||||
|
||||
<i v-if="step.currentStep.text === 'initial'"
|
||||
<i v-if="step.currentStep.name === 'initial'"
|
||||
class="fa fa-circle me-1 text-chill-yellow">
|
||||
</i>
|
||||
<i v-if="step.isFreezed"
|
||||
@ -95,7 +95,7 @@ export default {
|
||||
getPopTitle(step) {
|
||||
if (step.transitionPrevious != null) {
|
||||
let freezed = step.isFreezed ? `<i class="fa fa-snowflake-o fa-sm me-1"></i>` : ``;
|
||||
return `${freezed}${step.transitionPrevious.text}`; // or step.currentStep.text ??
|
||||
return `${freezed}${step.currentStep.text}`;
|
||||
}
|
||||
},
|
||||
getPopContent(step) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user