Skip to content

Commit

Permalink
fix: Consequences skeleton is now message (#506) (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
gromdimon authored Feb 16, 2024
1 parent 0a98997 commit e58e0f9
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/components/SeqvarConsequencesCard/SeqvarConsequencesCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,16 @@ const props = withDefaults(
<template>
<template v-if="!consequences?.length">
<!-- no ENSG => display loader -->
<v-skeleton-loader class="mt-3 mx-auto border" type="table" />
<!-- <v-skeleton-loader class="mt-3 mx-auto border" type="table" /> -->
<v-card>
<v-card-title class="pb-0 pr-2">
Consequences
<DocsLink anchor="consequences" />
</v-card-title>
<v-card-text>
<div class="text-muted text-center font-italic">No consequence data available.</div>
</v-card-text>
</v-card>
</template>
<template v-else>
<v-card>
Expand Down

0 comments on commit e58e0f9

Please sign in to comment.