Properly close dialog with escape (#23397)

* Properly close dialog with escape

* Revert "Properly close dialog with escape"

This reverts commit 9ea5ec4beebcbbd4f0623ed0b5da0f1026fcd5be.

* Remove focus on ok button in filter dialog

* Sets the focus on the filterTable
This commit is contained in:
Lewis Sanchez
2023-06-27 15:02:24 -07:00
committed by GitHub
parent a469837667
commit 7975fda6dd

View File

@@ -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() {