Skip to content

Commit 497c667

Browse files
Merge pull request #547 from valentin-huebner/main
Fix bug responsible for showing the wrong completed step caption for BY
2 parents d489b91 + fe5825f commit 497c667

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/StepHeader.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export default {
4444
},
4545
completedStepCaption() {
4646
const { name, enabled, selected, disabledDue = null } = this.step;
47-
const reversed = name => ['NC', 'ND', 'SA'].indexOf(name) > -1;
47+
const reversed = ['NC', 'ND', 'SA'].indexOf(name) > -1;
4848
let captionKey;
4949
if (name === 'DD') {
5050
return this.fullName;

0 commit comments

Comments
 (0)