Skip to content

Commit

Permalink
Merge pull request #17621 from kunalaswani/HPCC-29983
Browse files Browse the repository at this point in the history
HPCC-29983 Activities Routing for graphs not sending to correct href
  • Loading branch information
GordonSmith authored Jul 27, 2023
2 parents afa7847 + 935ff03 commit c5680cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion esp/src/src-react/components/Activities.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export const Activities: React.FunctionComponent<ActivitiesProps> = ({
formatter: React.useCallback(function (_gid, row) {
if (activity.isInstanceOfWorkunit(row)) {
if (row.GraphName) {
return `<a href='#/workunits/${row.Wuid}/metrics/${row.GraphName}/${row.GID}'>${row.GraphName}-${row.GID}</a>`;
return `<a href='#/workunits/${row.Wuid}/metrics/${row.GraphName}'>${row.GraphName}-${row.GID}</a>`;
}
}
return "";
Expand Down

0 comments on commit c5680cc

Please sign in to comment.