Skip to content

Commit

Permalink
fix link
Browse files Browse the repository at this point in the history
  • Loading branch information
maciaszczykm committed Mar 25, 2024
1 parent 16055cd commit 4ce06d3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion assets/src/components/kubernetes/workloads/Pods.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,10 @@ const colNode = columnHelper.accessor((pod) => pod?.nodeName, {
}

return (
<InlineLink href={getNodeAbsPath(cluster?.id, getValue())}>
<InlineLink
href={getNodeAbsPath(cluster?.id, getValue())}
onClick={(e) => e.stopPropagation()}
>
{getValue()}
</InlineLink>
)
Expand Down

0 comments on commit 4ce06d3

Please sign in to comment.