Skip to content

Commit

Permalink
Fix bug responsible for showing the wrong completed step caption for BY
Browse files Browse the repository at this point in the history
  • Loading branch information
valentin-huebner committed Oct 7, 2024
1 parent d489b91 commit fe5825f
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 fe5825f

Please sign in to comment.