Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Consequences skeleton is now message (#506) #130

Merged
merged 1 commit into from
Feb 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@
<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" />

Check warning on line 25 in src/components/SeqvarConsequencesCard/SeqvarConsequencesCard.vue

View check run for this annotation

Codecov / codecov/patch

src/components/SeqvarConsequencesCard/SeqvarConsequencesCard.vue#L25

Added line #L25 was not covered by tests
</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
Loading