diff --git a/src/components/screens/ScoreSetView.vue b/src/components/screens/ScoreSetView.vue index a427e7e4..a9585b92 100644 --- a/src/components/screens/ScoreSetView.vue +++ b/src/components/screens/ScoreSetView.vue @@ -560,10 +560,10 @@ export default { return options }, annotatedVariantDownloadOptions: function () { - const annotatatedVariantOptions = [] + const annotatedVariantOptions = [] if (this.item?.scoreCalibrations) { - annotatatedVariantOptions.push({ + annotatedVariantOptions.push({ label: 'Pathogenicity Evidence Line', command: () => { this.streamVariantAnnotations('pathogenicity-evidence-line') @@ -572,7 +572,7 @@ export default { } if (this.item?.scoreCalibrations) { - annotatatedVariantOptions.push({ + annotatedVariantOptions.push({ label: 'Functional Impact Statement', command: () => { this.streamVariantAnnotations('functional-impact-statement') @@ -580,14 +580,14 @@ export default { }) } - annotatatedVariantOptions.push({ + annotatedVariantOptions.push({ label: 'Functional Impact Study Result', command: () => { this.streamVariantAnnotations('functional-study-result') } }) - return annotatatedVariantOptions + return annotatedVariantOptions }, hideStartAndStopLoss: function () { // In clinical mode, when the target is not endogenously edited (so it has a target sequence), omit start- and diff --git a/src/components/screens/VariantScreen.vue b/src/components/screens/VariantScreen.vue index cf2f39f1..eb22e374 100644 --- a/src/components/screens/VariantScreen.vue +++ b/src/components/screens/VariantScreen.vue @@ -1,17 +1,23 @@