From d4c5e3f31c512475ff04fde352c155ccc5dd3f9f Mon Sep 17 00:00:00 2001 From: Dzmitry Hramyka Date: Mon, 16 Oct 2023 14:35:51 +0200 Subject: [PATCH] fix: Consequences display (#116) (#129) --- frontend/src/components/VariantDetails/TxCsq.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/src/components/VariantDetails/TxCsq.vue b/frontend/src/components/VariantDetails/TxCsq.vue index c9dff342..a89f4537 100644 --- a/frontend/src/components/VariantDetails/TxCsq.vue +++ b/frontend/src/components/VariantDetails/TxCsq.vue @@ -17,14 +17,14 @@ const props = defineProps<{ txCsq: any }>() - {{ txCsq['gene-symbol'] }} + {{ txCsq['gene_symbol'] }} - {{ txCsq['feature-id'] }} - ({{ txCsq['feature-biotype'] }}) + {{ txCsq['feature_id'] }} + ({{ txCsq['feature_biotype'] }}) {{ (txCsq['consequences'] ?? []).join(', ') }} - {{ txCsq['hgvs-t'] }} - {{ txCsq['hgvs-p'] }} + {{ txCsq['hgvs_t'] }} + {{ txCsq['hgvs_p'] }} {{ txCsq['rank']?.ord }} / {{ txCsq['rank']?.total }}