Skip to content

Commit e26cd63

Browse files
pdanpdanrstoenescu
authored andcommitted
fix: QStepper next check for last step and unused flat property (quasarframework#617)
* fix: QStepper next check for last step and unused flat property * fix: QStepper - typo * fix: QStepper duplicate step-error class
1 parent a3d58dd commit e26cd63

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/components/stepper/QStepper.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ export default {
114114
},
115115
reset () {
116116
if (this.hasSteps) {
117-
this.gotToStep(this.steps[0].name)
117+
this.goToStep(this.steps[0].name)
118118
}
119119
},
120120

src/components/stepper/StepTab.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
'step-error': vm.error,
66
'step-active': vm.active,
77
'step-done': vm.done,
8-
'step-error': vm.error,
98
'step-waiting': vm.waiting,
109
'step-disabled': vm.disable,
1110
'step-colored': vm.active || vm.done,

0 commit comments

Comments
 (0)