Skip to content

Commit

Permalink
Back button not displaying text.
Browse files Browse the repository at this point in the history
  • Loading branch information
hazzo committed Oct 3, 2017
1 parent e6e59c4 commit dd84ecb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dist/build.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/build.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-stepper",
"version": "1.0.3",
"version": "1.0.4",
"description": "Vue Stepper",
"main": "src/index.js",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion src/HorizontalStepper.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<div :class="['bottom', (currentStep.index > 0) ? '' : 'only-next']">
<div v-if="currentStep.index > 0" class="stepper-button previous" @click="backStep()">
<i class="material-icons">keyboard_arrow_left</i>
<span>{{ back | translate(locale) }}</span>
<span>{{ 'back' | translate(locale) }}</span>
</div>
<div :class="['stepper-button next', !canContinue ? 'deactivated' : '']" @click="nextStep()">
<span>{{ (finalStep) ? 'finish' : 'next' | translate(locale) }}</span>
Expand Down

0 comments on commit dd84ecb

Please sign in to comment.