-
Notifications
You must be signed in to change notification settings - Fork 16
Issue - 65 | Keyboard Navigation | Accessibility of Application | Tab focus #66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1759,9 +1759,9 @@ export function VisualPreview({ | |
)} | ||
</svg> | ||
{flowNodes.map(node => ( | ||
<div | ||
<button | ||
key={node.id} | ||
className={`absolute w-48 p-3 rounded-lg border-2 shadow-lg select-none cursor-pointer ${ | ||
className={`absolute w-48 p-3 text-left rounded-lg border-2 shadow-lg select-none cursor-pointer ${ | ||
Comment on lines
1761
to
+1764
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Button elements inside absolutely positioned containers may not be keyboard accessible if they receive focus but are visually hidden or overlapped. Consider adding proper focus management or ensuring these buttons remain accessible when focused. Copilot uses AI. Check for mistakes. Positive FeedbackNegative Feedback |
||
node.colorClass || getStatusColor(node.status) | ||
}`} | ||
style={{ | ||
|
@@ -1876,7 +1876,7 @@ export function VisualPreview({ | |
)} | ||
</div> | ||
)} | ||
</div> | ||
</button> | ||
))} | ||
</div> | ||
{/* YAML Modal */} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing
w-full text-left
classes that are consistently applied in other similar button conversions in this PR. This ensures proper button styling and text alignment.Copilot uses AI. Check for mistakes.