aboutsummaryrefslogtreecommitdiff
path: root/src/App.vue
diff options
context:
space:
mode:
authorTerry Truong <terry06890@gmail.com>2022-06-27 03:58:55 +1000
committerTerry Truong <terry06890@gmail.com>2022-06-27 04:11:24 +1000
commit25e633fe44d7bd84c566090188ea2c9a82449c69 (patch)
tree03163dcad9dd20d35a3ded49702ad8a6b7dad5c3 /src/App.vue
parenta59095b8f87b470872a692b913e6bc2a8cca759b (diff)
Clean up code in TutorialPane
Also simply tutorial instructions
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/App.vue b/src/App.vue
index 887b9a1..128312d 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -990,7 +990,7 @@ export default defineComponent({
<!-- Content area -->
<div :style="tutPaneContainerStyles"> <!-- Used to slide-in/out the tutorial pane -->
<transition name="fade" @after-enter="tutPaneInTransition = false" @after-leave="tutPaneInTransition = false">
- <tutorial-pane v-if="tutPaneOpen" :height="uiOpts.tutPaneSz + 'px'"
+ <tutorial-pane v-if="tutPaneOpen" :style="{height: uiOpts.tutPaneSz + 'px'}"
:uiOpts="uiOpts" :triggerFlag="tutTriggerFlag" :skipWelcome="!tutWelcome"
@close="onTutPaneClose" @skip="onTutorialSkip" @stage-chg="onTutStageChg"/>
</transition>