so I got it finally managed to open a material-dialog and pass data to it (a text with some vars). But now I realized, that I have to update the data in the dialog asynchronously, because the vars change over time, and when the dialog is open, its content needs to be updated.
in my dialog-component I have a:
<div class="statusMsg" [innerHTML]="data.messages"></div>
I have no idea how to do this. I tried with | async
but with no effort. Is it generally possible?