Skip to content

Commit

Permalink
feat(genome): Add tooltip for taxonomic information.
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronmussig committed Apr 27, 2023
1 parent dfe91fd commit e0af1fb
Showing 1 changed file with 27 additions and 1 deletion.
28 changes: 27 additions & 1 deletion components/genome/GenomeTaxonomicInformation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@

<!-- Filtered NCBI taxonomy -->
<tr>
<td class="gtdb-green-bg-table first-table-col">Filtered NCBI Taxonomy</td>
<td class="gtdb-green-bg-table first-table-col">Filtered NCBI Taxonomy </td>
<template v-if="isLoading">
<td>
<v-skeleton-loader
Expand Down Expand Up @@ -93,6 +93,19 @@
Standard ranks were also prefixed with rank identifiers as previously described (McDonald et al., 2012).</span>
</v-tooltip>

<v-tooltip bottom max-width="400px">
<template v-slot:activator="{ on, attrs }">
<v-icon
small
v-bind="attrs"
v-on="on"
>
{{ mdiHelpCircleSvg }}
</v-icon>
</template>
<span>Reflects NCBI Taxonomy at time of download for release. External links to NCBI may have updated information.</span>
</v-tooltip>

</td>
<td v-else>
Undefined
Expand Down Expand Up @@ -144,6 +157,19 @@
{{ item.taxon }}<template v-if="index !== genomeCard.ncbiTaxonomyUnfiltered.length - 1">;</template>
</template>
</span>

<v-tooltip bottom max-width="400px">
<template v-slot:activator="{ on, attrs }">
<v-icon
small
v-bind="attrs"
v-on="on"
>
{{ mdiHelpCircleSvg }}
</v-icon>
</template>
<span>Reflects NCBI Taxonomy at time of download for release. External links to NCBI may have updated information.</span>
</v-tooltip>
</td>
<td v-else>
Undefined
Expand Down

0 comments on commit e0af1fb

Please sign in to comment.