Skip to content

Commit

Permalink
Fix Steps component import
Browse files Browse the repository at this point in the history
  • Loading branch information
lukitsbrian committed Mar 17, 2021
1 parent 6544cd2 commit fb83eeb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion components/Modal/Action.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<i class="material-icons notranslate">close</i>
</div>
<span class="action-modal-title">{{ title }}</span>
<Steps
<CommonSteps
v-if="[defaultStep, feeStep, signStep].includes(step)"
:steps="steps"
:active-step="step"
Expand Down
2 changes: 1 addition & 1 deletion pages/create/index.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div>
<Steps :steps="steps" :active-step="step" />
<CommonSteps :steps="steps" :active-step="step" />
<NameStep v-if="step === 'Name'" :name="name" @submit="setName" />
<PasswordStep
v-if="step === 'Password'"
Expand Down
2 changes: 1 addition & 1 deletion pages/recover/index.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div>
<Steps :steps="steps" :active-step="step" />
<CommonSteps :steps="steps" :active-step="step" />
<ImportSeedStep v-if="step === 'Recover'" :seed="seed" @submit="setSeed" />
<ImportNameStep
v-if="step === 'Name'"
Expand Down

0 comments on commit fb83eeb

Please sign in to comment.