Skip to content

Commit

Permalink
Fix redirection (#5926)
Browse files Browse the repository at this point in the history
Fix redirection agents table
  • Loading branch information
yenienserrano authored Oct 3, 2023
1 parent 234206d commit 296e777
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export const AgentsTable = withErrorBoundary(
onClick={ev => {
ev.stopPropagation();
navigateAppURL(
`/app/it-hygiene#/tab=welcome&agent=${agent.id}`,
`/app/it-hygiene#/agents?tab=welcome&agent=${agent.id}`,
);
}}
iconType='eye'
Expand Down Expand Up @@ -294,7 +294,9 @@ export const AgentsTable = withErrorBoundary(
return {
onClick: ev => {
ev.stopPropagation();
navigateAppURL(`/app/it-hygiene#/tab=welcome&agent=${item.id}`);
navigateAppURL(
`/app/it-hygiene#/agents?tab=welcome&agent=${item.id}`,
);
},
};
};
Expand Down

0 comments on commit 296e777

Please sign in to comment.