aboutsummaryrefslogtreecommitdiff
path: root/src/components/AncestryBar.vue
diff options
context:
space:
mode:
authorTerry Truong <terry06890@gmail.com>2022-05-23 07:02:16 +1000
committerTerry Truong <terry06890@gmail.com>2022-05-23 07:05:21 +1000
commit19984e11e3bfd793188fd84c621a304330f4a303 (patch)
treec6ce61fa0eb782d3025d94733cd0c3fd1e10e6a2 /src/components/AncestryBar.vue
parent6edf3fe12a7c895eb55292281eac497377128fd2 (diff)
Display 'compound images'
Adjust genLinkedImgs.py to associate multiple images to compound-nodes. Adjust server to send multiple image filenames for such nodes. Adjust Tile and TileInfoModal to display those compound-images.
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 ca865e9..5419f78 100644
--- a/src/components/AncestryBar.vue
+++ b/src/components/AncestryBar.vue
@@ -71,7 +71,7 @@ export default defineComponent({
onTileClick(node: LayoutNode){
this.$emit('detached-ancestor-click', node);
},
- onInfoIconClick(data: LayoutNode){
+ onInfoIconClick(data: string){
this.$emit('info-icon-click', data);
}
},