Skip to content

Commit dd84ecb

Browse files
committed
Back button not displaying text.
1 parent e6e59c4 commit dd84ecb

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

dist/build.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/build.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-stepper",
3-
"version": "1.0.3",
3+
"version": "1.0.4",
44
"description": "Vue Stepper",
55
"main": "src/index.js",
66
"repository": {

src/HorizontalStepper.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<div :class="['bottom', (currentStep.index > 0) ? '' : 'only-next']">
3434
<div v-if="currentStep.index > 0" class="stepper-button previous" @click="backStep()">
3535
<i class="material-icons">keyboard_arrow_left</i>
36-
<span>{{ back | translate(locale) }}</span>
36+
<span>{{ 'back' | translate(locale) }}</span>
3737
</div>
3838
<div :class="['stepper-button next', !canContinue ? 'deactivated' : '']" @click="nextStep()">
3939
<span>{{ (finalStep) ? 'finish' : 'next' | translate(locale) }}</span>

0 commit comments

Comments
 (0)