Skip to content

Commit

Permalink
fix: Consequences display (#116) (#129)
Browse files Browse the repository at this point in the history
  • Loading branch information
gromdimon authored Oct 16, 2023
1 parent 555fae4 commit d4c5e3f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions frontend/src/components/VariantDetails/TxCsq.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ const props = defineProps<{ txCsq: any }>()
</thead>
<tbody>
<tr v-for="txCsq in props.txCsq" :key="txCsq">
<td>{{ txCsq['gene-symbol'] }}</td>
<td>{{ txCsq['gene_symbol'] }}</td>
<td>
{{ txCsq['feature-id'] }}
({{ txCsq['feature-biotype'] }})
{{ txCsq['feature_id'] }}
({{ txCsq['feature_biotype'] }})
</td>
<td>{{ (txCsq['consequences'] ?? []).join(', ') }}</td>
<td>{{ txCsq['hgvs-t'] }}</td>
<td>{{ txCsq['hgvs-p'] }}</td>
<td>{{ txCsq['hgvs_t'] }}</td>
<td>{{ txCsq['hgvs_p'] }}</td>
<td>{{ txCsq['rank']?.ord }} / {{ txCsq['rank']?.total }}</td>
</tr>
</tbody>
Expand Down

0 comments on commit d4c5e3f

Please sign in to comment.