syncthing/next-gen-gui/src/app/dialog/dialog.component.html

6 lines
297 B
HTML
Raw Normal View History

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