Skip to content

Commit

Permalink
Fix: Make workflow thread link clickable
Browse files Browse the repository at this point in the history
Couldn't click the Threads link on the workflow table because the row
click was getting in the way.

Signed-off-by: Craig Jellick <[email protected]>
  • Loading branch information
cjellick committed Dec 7, 2024
1 parent ae77e8a commit 224d7e7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ui/admin/app/routes/_auth.workflows._index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,9 @@ export default function Workflows() {
columns={getColumns()}
data={getWorkflows.data || []}
sort={[{ id: "created", desc: true }]}
disableClickPropagation={(cell) =>
cell.id.includes("action")
}
onRowClick={(row) => {
navigate(
$path("/workflows/:workflow", {
Expand Down

0 comments on commit 224d7e7

Please sign in to comment.