Skip to content

Commit

Permalink
Fix empty tooltip checking function
Browse files Browse the repository at this point in the history
  • Loading branch information
akhuoa committed Jul 19, 2024
1 parent ea1b3d4 commit 54a8498
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/FlatmapVuer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2035,10 +2035,10 @@ export default {
} = this.tooltipEntry;
return Boolean(
components?.length &&
destinations?.length &&
origins?.length &&
provenanceTaxonomy?.length &&
components?.length ||
destinations?.length ||
origins?.length ||
provenanceTaxonomy?.length ||
provenanceTaxonomyLabel?.length
);
},
Expand Down

0 comments on commit 54a8498

Please sign in to comment.