Skip to content

Commit

Permalink
スタイル選択画面で未選択時に「次へ」ボタンを非表示 (#770)
Browse files Browse the repository at this point in the history
  • Loading branch information
nebocco authored Mar 22, 2022
1 parent e0f8d20 commit 62e7b36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/DefaultStyleSelectDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,22 +54,22 @@

<q-btn
v-if="pageIndex + 1 < showCharacterInfos.length"
v-show="canNext"
unelevated
label="次へ"
color="background-light"
text-color="display-dark"
class="text-no-wrap"
:disable="!canNext"
@click="nextPage"
/>
<q-btn
v-else
v-show="canNext"
unelevated
label="完了"
color="background-light"
text-color="display-dark"
class="text-no-wrap"
:disable="!canNext"
@click="closeDialog"
/>
</div>
Expand Down

0 comments on commit 62e7b36

Please sign in to comment.