Skip to content

Commit

Permalink
Properly close dialog with escape (#23397)
Browse files Browse the repository at this point in the history
* Properly close dialog with escape

* Revert "Properly close dialog with escape"

This reverts commit 9ea5ec4.

* Remove focus on ok button in filter dialog

* Sets the focus on the filterTable
  • Loading branch information
lewis-sanchez authored Jun 27, 2023
1 parent a469837 commit 7975fda
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export class FilterDialog extends Modal {
public open(): void {
this.render();
this.show();
this._okButton.focus();
this.filterTable.focus();
}

public override render() {
Expand Down

0 comments on commit 7975fda

Please sign in to comment.