aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/components/TutorialPane.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/TutorialPane.vue b/src/components/TutorialPane.vue
index 07d818a..f8efc61 100644
--- a/src/components/TutorialPane.vue
+++ b/src/components/TutorialPane.vue
@@ -49,11 +49,11 @@
<s-button :style="buttonStyles" @click="onSkipTutorial">Skip</s-button>
</template>
<template v-else>
- <s-button v-if="hidNextPrevOnce || stage > 1" :disabled="stage == 1"
+ <s-button :class="{invisible: !hidNextPrevOnce && stage == 1}" :disabled="stage == 1"
@click="onPrevClick" :style="buttonStyles">
Prev
</s-button>
- <s-button v-if="hidNextPrevOnce || stage > 1"
+ <s-button :class="{invisible: !hidNextPrevOnce && stage == 1}"
@click="stage != lastStage ? onNextClick() : onClose()" :style="buttonStyles">
{{stage != lastStage ? 'Next' : 'Finish'}}
</s-button>