aboutsummaryrefslogtreecommitdiff
path: root/src/components/AncestryBar.vue
diff options
context:
space:
mode:
authorTerry Truong <terry06890@gmail.com>2022-06-24 19:19:12 +1000
committerTerry Truong <terry06890@gmail.com>2022-06-24 19:19:12 +1000
commit45bca977157084e11aaa2554ca3a2a403cedcfdb (patch)
treec99abbb4c7c478cd3341dfc48853245e27e7ce65 /src/components/AncestryBar.vue
parentbce4ab3facf63f70a0dd3cefa1f8c82453dba2d4 (diff)
Move utility functions into util.ts
Diffstat (limited to 'src/components/AncestryBar.vue')
-rw-r--r--src/components/AncestryBar.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/AncestryBar.vue b/src/components/AncestryBar.vue
index 85a8f99..c973195 100644
--- a/src/components/AncestryBar.vue
+++ b/src/components/AncestryBar.vue
@@ -1,8 +1,8 @@
<script lang="ts">
import {defineComponent, PropType} from 'vue';
import Tile from './Tile.vue'
-import {LayoutNode, LayoutOptions} from '../layout';
import {TolMap, UiOptions} from '../lib';
+import {LayoutNode, LayoutOptions} from '../layout';
// Displays a sequence of nodes, representing ancestors from a tree-of-life root to a currently-active root
export default defineComponent({