aboutsummaryrefslogtreecommitdiff
path: root/src/components/AncestryBar.vue
diff options
context:
space:
mode:
authorTerry Truong <terry06890@gmail.com>2022-06-20 19:50:32 +1000
committerTerry Truong <terry06890@gmail.com>2022-06-20 19:50:32 +1000
commit9a7bb3db01fe2e99ccc12285c63323bc67c278e8 (patch)
tree96d9e6c1b2d3e4225fb603d0296048f5cffb753a /src/components/AncestryBar.vue
parent2374693a86532637ccf472af5960e68851308528 (diff)
Increase type-consistency via server-classes and client-types
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 8f31900..a56568c 100644
--- a/src/components/AncestryBar.vue
+++ b/src/components/AncestryBar.vue
@@ -3,7 +3,7 @@ import {defineComponent, PropType} from 'vue';
import Tile from './Tile.vue'
import {LayoutNode} from '../layout';
import type {LayoutOptions} from '../layout';
-import type {TolMap} from '../tol';
+import type {TolMap} from '../lib';
// Displays a sequence of nodes, representing ancestors from a tree-of-life root to a currently-active root
export default defineComponent({