We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6878cb commit eeb6ca0Copy full SHA for eeb6ca0
src/main/webapp/app/pages/annotationPage/AnnotatedAlterations.tsx
@@ -47,14 +47,14 @@ const getColumns = (
47
...getDefaultColumnDefinition(TABLE_COLUMN_KEY.DESCRIPTION),
48
accessor(d: BiologicalVariant) {
49
return useMutationEffectForGermline
50
- ? ({
+ ? {
51
abstracts: d.mutationEffectAbstracts,
52
pmids: d.mutationEffectPmids,
53
- } as Citations)
54
- : ({
+ }
+ : {
55
abstracts: d.pathogenicAbstracts,
56
pmids: d.pathogenicPmids,
57
- } as Citations);
+ };
58
},
59
Cell(props: { original: BiologicalVariant }) {
60
return (
0 commit comments