aboutsummaryrefslogtreecommitdiff
path: root/src/App.vue
diff options
context:
space:
mode:
authorTerry Truong <terry06890@gmail.com>2022-06-29 15:15:47 +1000
committerTerry Truong <terry06890@gmail.com>2022-06-29 15:15:47 +1000
commit93e3a4907c08a82225d1f947bb7674edf8a67c85 (patch)
treea3404666f35a415cd86bc81d259a31f2c0c89946 /src/App.vue
parente3a86973922fa9370900f2e3b07a78222e44b056 (diff)
Add breadth prop to AncestryBar
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/App.vue b/src/App.vue
index 7fca4c5..614121c 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -32,7 +32,8 @@
<transition name="fade"
@after-enter="ancestryBarInTransition = false" @after-leave="ancestryBarInTransition = false">
<ancestry-bar v-if="detachedAncestors != null" class="w-full h-full"
- :nodes="detachedAncestors" :vert="wideArea" :tolMap="tolMap" :lytOpts="lytOpts" :uiOpts="uiOpts"
+ :nodes="detachedAncestors" :vert="wideArea" :breadth="uiOpts.ancestryBarBreadth"
+ :tolMap="tolMap" :lytOpts="lytOpts" :uiOpts="uiOpts"
@ancestor-click="onDetachedAncestorClick" @info-click="onInfoClick"/>
</transition>
</div>