Skip to content

Commit

Permalink
fix: Replace acmgSf data with hgnc one in PanelApp (#416) (#417)
Browse files Browse the repository at this point in the history
  • Loading branch information
gromdimon authored Jan 29, 2024
1 parent 2ec6845 commit d308661
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions frontend/src/components/GeneDetails/ConditionsCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ watch(
>
<template #header>
<v-toolbar class="px-2 rounded-t-lg border" color="background">
<div class="text-subtitle-1" :class="{ 'mt-3': geneInfo?.acmgSf }">
<div class="text-subtitle-1" :class="{ 'mt-3': geneInfo?.hgnc }">
Associated Diseases
<small>
<template
Expand Down Expand Up @@ -451,9 +451,9 @@ watch(
<template #header>
<v-toolbar class="px-2 rounded-t-lg border" color="background">
<div class="text-subtitle-1 mt-3">
PanelApp Panels for {{ geneInfo.acmgSf.geneSymbol }}
PanelApp Panels for {{ geneInfo.hgnc.symbol }}
<a
:href="`https://panelapp.genomicsengland.co.uk/panels/entities/${geneInfo.acmgSf.geneSymbol}`"
:href="`https://panelapp.genomicsengland.co.uk/panels/entities/${geneInfo.hgnc.symbol}`"
target="_blank"
>
<v-icon>mdi-launch</v-icon>
Expand Down Expand Up @@ -572,7 +572,7 @@ watch(
<v-expansion-panel-text>
Gene specific panel decision in PanelApp:
<a
:href="`https://panelapp.genomicsengland.co.uk/panels/${item.raw.panel.id}/gene/${geneInfo.acmgSf.geneSymbol}`"
:href="`https://panelapp.genomicsengland.co.uk/panels/${item.raw.panel.id}/gene/${geneInfo.hgnc.symbol}`"
target="_blank"
>
<v-icon>mdi-launch</v-icon>
Expand Down

0 comments on commit d308661

Please sign in to comment.