fix(ui): use pointer cursor on workflow execution rows#3070
Open
57hemanth wants to merge 2 commits into
Open
Conversation
Each execution row in the workflow executions list is a clickable Link, but the class hardcoded hover:cursor-default, so hovering gave no affordance that the row is interactive. Use hover:cursor-pointer to match the row's click behavior.
|
✅ No security or compliance issues detected. Reviewed everything up to 43092cd. Security Overview
Detected Code Changes
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Each row in the workflow executions list (
/workflows/{id}/executions) is aclickable
Linkthat navigates to the execution detail, but the row classhardcoded
hover:cursor-default. As a result, hovering over a run gave nocursor affordance that the row is interactive.
This switches the row to
hover:cursor-pointerto match its click behavior.The nested terminate (✕) icon keeps its own
hover:cursor-pointer, and statusicons are unaffected.
Why
Consistency and discoverability: the entire row is clickable, so it should show
the pointer cursor like every other interactive navigation target in the app.
Changes
frontend/src/components/executions/nav.tsx:hover:cursor-default→hover:cursor-pointeron the execution row link.Testing
CSS-only class change with no logic impact. Refresh the executions page and
confirm hovering a run shows the pointer cursor, the row still navigates to the
execution detail, and the terminate icon on running executions is unaffected.
Before
After
Summary by cubic
Use a pointer cursor on workflow execution rows so users see they are clickable. Replaced
hover:cursor-defaultwithhover:cursor-pointeron the row link infrontend/src/components/executions/nav.tsx; terminate and status icons are unchanged.Written for commit 43092cd. Summary will update on new commits.