Skip to content

Commit

Permalink
Fix filterheatmap URL composition for view (#530)
Browse files Browse the repository at this point in the history
include project ID in the URL
  • Loading branch information
mshriver authored Nov 13, 2024
1 parent aa395ff commit 4e43cd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/widgets/filterheatmap.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export class FilterHeatmapWidget extends React.Component {
const { analysisViewId } = this.state;
if (this.props.includeAnalysisLink && analysisViewId !== null) {
return (
<Link to={`/view/${analysisViewId}?job_name=${this.params.job_name}`}>
<Link to={`/project/${this.params.project}/view/${analysisViewId}?job_name=${this.params.job_name}`}>
<Button variant="secondary" title="See analysis" aria-label="See analysis" isInline><ChartLineIcon/></Button>
</Link>
);
Expand Down

0 comments on commit 4e43cd7

Please sign in to comment.