Skip to content

Commit

Permalink
fix: fixing rank display issues triggering bug (bihealth/reev#433) (#96)
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe authored Feb 6, 2024
1 parent 761d416 commit fcf376e
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,12 @@ const props = withDefaults(
<td>{{ oneTxCsq.consequences.join(', ') }}</td>
<td>{{ oneTxCsq.hgvsT }}</td>
<td>{{ oneTxCsq.hgvsP }}</td>
<td>{{ oneTxCsq.rank!.rank }} / {{ oneTxCsq.rank!.total }}</td>
<template v-if="oneTxCsq.rank">
<td>{{ oneTxCsq.rank!.rank ?? 0 }} / {{ oneTxCsq.rank!.total ?? 0 }}</td>
</template>
<template v-else>
<td>-</td>
</template>
</tr>
</template>
<template v-else>
Expand Down

0 comments on commit fcf376e

Please sign in to comment.