Skip to content

Commit

Permalink
fix: panel expand trigger focusable
Browse files Browse the repository at this point in the history
  • Loading branch information
abdul99ahad committed Dec 3, 2024
1 parent 79dd2ca commit d3a3def
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/app/resizable-container/ResizableContainer.js
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,8 @@ function Resizer(props) {
>
{
isHorizontal(direction)
? <HandleBarX className="handlebar" />
: <HandleBarY className="handlebar" />
? <HandleBarX tabIndex="0" className="handlebar" />
: <HandleBarY tabIndex="0" className="handlebar" />
}
<div className="resizer-border"></div>
</div>
Expand Down

0 comments on commit d3a3def

Please sign in to comment.