syncthing/src/app/dialog/dialog.component.html

6 lines
240 B
HTML
Raw Normal View History

2020-04-08 00:54:21 +02:00
<div mat-dialog-content>
<mat-list dense>
<mat-list-item *ngFor='let message of messageService.messages'>{{message}}</mat-list-item>
</mat-list>
<button mat-button [mat-dialog-close] cdkFocusInitial>Close</button>
2020-04-08 00:54:21 +02:00
</div>