Попробуйте установить параметр autoFocus
, который установит первый фокусируемый элемент в диалоговом окне.
this.dialogRef = this.dialog.open(myDialog, {
autoFocus: true, // <-- add this here
width: this.width,
viewContainerRef: this.viewContainerRef,
direction: 'ltr',
panelClass: 'my-dialog',
data: {
address: this.addressResponse
}
});