mirror of
https://github.com/shoelace-style/webawesome.git
synced 2026-01-12 04:09:12 +00:00
Make dialog overlay non focusable (#344)
If you click the overlay in the [ignore clicks on the overlay](https://shoelace.style/components/dialog?id=ignoring-clicks-on-the-overlay) demo you can no longer press escape to close the modal since the overlay has been focused.
This commit is contained in:
@@ -229,7 +229,7 @@ export class Dialog {
|
||||
onKeyDown={this.handleKeyDown}
|
||||
onTransitionEnd={this.handleTransitionEnd}
|
||||
>
|
||||
<div part="overlay" class="dialog__overlay" onClick={this.handleOverlayClick} />
|
||||
<div part="overlay" class="dialog__overlay" onClick={this.handleOverlayClick} tabIndex={-1} />
|
||||
|
||||
<div
|
||||
ref={el => (this.panel = el)}
|
||||
|
||||
Reference in New Issue
Block a user