Skip to content

Commit

Permalink
fix: proper conditions for VSkeletonLoader in GeneConditionsCard (#164)
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe authored Mar 6, 2024
1 parent 4578e36 commit da4c083
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/GeneConditionsCard/GeneConditionsCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ const conditionsCols = computed<number>(() => {

<template>
<!-- no ENSG => display loader -->
<template v-if="!geneInfo?.dbnsfp?.geneName?.length">
<template v-if="!geneInfo && !hpoTerms">
<v-skeleton-loader class="mx-auto border" type="image,button" />
</template>

Expand Down

0 comments on commit da4c083

Please sign in to comment.