Skip to content

Commit

Permalink
Merge pull request #998 from zhx828/always-show-tx
Browse files Browse the repository at this point in the history
Always show tx section in annotation page
  • Loading branch information
zhx828 authored Jul 11, 2023
2 parents 17c2b19 + 9230f2e commit 12bec01
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions src/main/webapp/app/pages/annotationPage/CancerTypeView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -185,15 +185,13 @@ const FdaView: React.FunctionComponent<{
export const CancerTypeView: React.FunctionComponent<ICancerTypeView> = props => {
return (
<div className={'mt-3'}>
{props.therapeuticImplications.length > 0 && (
<TxView
isLargeScreen={props.isLargeScreen}
userAuthenticated={props.userAuthenticated}
hugoSymbol={props.hugoSymbol}
summary={props.annotation.tumorTypeSummary}
implications={props.therapeuticImplications}
/>
)}
<TxView
isLargeScreen={props.isLargeScreen}
userAuthenticated={props.userAuthenticated}
hugoSymbol={props.hugoSymbol}
summary={props.annotation.tumorTypeSummary}
implications={props.therapeuticImplications}
/>
{props.diagnosticImplications.length > 0 && (
<DxPxView
isLargeScreen={props.isLargeScreen}
Expand Down

0 comments on commit 12bec01

Please sign in to comment.