Skip to content

Commit

Permalink
Merge pull request #547 from valentin-huebner/main
Browse files Browse the repository at this point in the history
Fix bug responsible for showing the wrong completed step caption for BY
  • Loading branch information
possumbilities authored Nov 1, 2024
2 parents d489b91 + fe5825f commit 497c667
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/StepHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export default {
},
completedStepCaption() {
const { name, enabled, selected, disabledDue = null } = this.step;
const reversed = name => ['NC', 'ND', 'SA'].indexOf(name) > -1;
const reversed = ['NC', 'ND', 'SA'].indexOf(name) > -1;
let captionKey;
if (name === 'DD') {
return this.fullName;
Expand Down

0 comments on commit 497c667

Please sign in to comment.