27 lines
831 B
HTML
27 lines
831 B
HTML
<h1 mat-dialog-title>Hi </h1>
|
|
<!--<div mat-dialog-content >-->
|
|
<mat-dialog-content class="mat-typography">
|
|
<!-- <mat-nav-list>-->
|
|
@for (fileInfo of fileInfos; track fileInfo){
|
|
<a mat-list-item (click)="select(fileInfo)">
|
|
<img style="width: 179px; height: 100px" src="{{fileInfo.url}}" alt="">
|
|
<span class="entry">
|
|
|
|
<!-- @if (!isCollapsed) {-->
|
|
<span >{{fileInfo.name}}</span>
|
|
<!-- }-->
|
|
</span>
|
|
</a>
|
|
}
|
|
|
|
<!-- </mat-nav-list>-->
|
|
</mat-dialog-content>
|
|
<!--</div>-->
|
|
<div mat-dialog-actions>
|
|
<button mat-button (click)="upload()">Upload</button>
|
|
<span class="menu-spacer"></span>
|
|
<button mat-button mat-dialog-close (click)="onNoClick()">No Thanks</button>
|
|
<!-- <button mat-button cdkFocusInitial (click)="select()">Ok</button>-->
|
|
</div>
|
|
|