Skip to content

Commit

Permalink
Fix study url in study summary header
Browse files Browse the repository at this point in the history
  • Loading branch information
kalletlak committed Feb 18, 2020
1 parent 6e0e42c commit 4dd62b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/studyView/virtualStudy/VirtualStudy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import classnames from 'classnames';
import { DefaultTooltip, remoteData } from 'cbioportal-frontend-commons';
import sessionServiceClient from 'shared/api//sessionServiceInstance';
import { If, Then, Else } from 'react-if';
import { buildCBioPortalPageUrl } from 'shared/api/urls';
import { buildCBioPortalPageUrl, getStudySummaryUrl } from 'shared/api/urls';
import { ChartMeta } from 'pages/studyView/StudyViewUtils';
import {
getVirtualStudyDescription,
Expand Down Expand Up @@ -54,7 +54,7 @@ export class StudySummaryRecord extends React.Component<CancerStudy, {}> {
</span>
<a
target="_blank"
href={`study?id=${this.props.studyId}`}
href={getStudySummaryUrl(this.props.studyId)}
>
<i
className="fa fa-external-link"
Expand Down

0 comments on commit 4dd62b6

Please sign in to comment.