repository/shared/columns/file.cell-renderer.component.ts
| providers |
RepositoryService
|
| selector | c8y-file-cell-renderer |
| standalone | true |
| imports | |
| templateUrl | ./file.cell-renderer.component.html |
No results matching.
<small
title="{{ getBinaryName(context.item) | async }}"
*ngIf="isBinaryFile(); else noFile"
>
{{ getBinaryName(context.item) | async }}
</small>
<ng-template #noFile>
<small title="{{ context.item?.url }}">
{{ context.item?.url }}
</small>
</ng-template>