Skip to content
Snippets Groups Projects
binary-file2.component.html 628 B
Newer Older
  • Learn to ignore specific revisions
  • OZGCloud's avatar
    OZGCloud committed
    <ods-attachment
      [documentName]="file.name"
      [description]="file.size | fileSizePlain"
    
      [fileType]="getIconType(file.contentType)"
    
    OZGCloud's avatar
    OZGCloud committed
      (click)="downloadFile()"
      [attr.aria-label]="'Anhang: Dateiname: ' + file.name"
    
      [isLoading]="isLoading"
    
    OZGCloud's avatar
    OZGCloud committed
    >
    
      <div close class="flex-shrink">
        <button
          *ngIf="deletable"
          class="flex size-10 items-center justify-center rounded-md hover:border hover:border-ozggray-600 hover:bg-ozggray-100"
          (click)="deleteFile()"
          title="Anhang löschen"
          aria-label="Anhang löschen Button"
        >
          <ods-close-icon></ods-close-icon>
        </button>
      </div>
    
    OZGCloud's avatar
    OZGCloud committed
    </ods-attachment>