Guest User

Untitled

a guest
Jul 23rd, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. <tr *ngFor="let documentFile of foundedDocumentFiles; index as i; let last = last">
  2. <td>
  3. <mat-form-field style="max-width:40px;">
  4. <mat-select>
  5. <mat-option *ngFor="let documentFileVersion of documentFile.documentFileVersions" [value]="documentFileVersion">
  6. {{documentFileVersion.version.substr(8)}} - {{documentFileVersion.uploadTime}}
  7. </mat-option>
  8. </mat-select>
  9. </mat-form-field>
  10. </td>
  11. <td>
  12. <mat-icon class="icon-hover" (click)="createPreview(documentFile, documentFileVersion)">airplay</mat-icon>
  13. </td>
  14.  
  15. <div>
  16. <mat-select [(ngModel)]="selected">
  17. <mat-option *ngFor="let documentFileVersion of documentFile.documentFileVersions" [value]="documentFileVersion">
  18. {{documentFileVersion.version.substr(8)}} - {{documentFileVersion.uploadTime}}
  19. </mat-option>
  20. </mat-select>
  21. </div>
Add Comment
Please, Sign In to add comment