We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d94c81f + 077581b commit c55a813Copy full SHA for c55a813
src/pages/patientView/structuralVariant/StructuralVariantTableWrapper.tsx
@@ -145,7 +145,9 @@ export default class StructuralVariantTableWrapper extends React.Component<
145
filterString: string,
146
filterStringUpper: string
147
) => {
148
- return d[0].site1HugoSymbol.indexOf(filterStringUpper) > -1;
+ return (
149
+ d[0].site1HugoSymbol?.indexOf(filterStringUpper) > -1
150
+ );
151
},
152
download: (d: StructuralVariant[]) => d[0].site1HugoSymbol,
153
sortBy: (d: StructuralVariant[]) => d[0].site1HugoSymbol,
0 commit comments