Skip to content
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@
<th id="actions" scope="col" class="{{ columnSizes.columns[3].buildClasses() }} text-center">
{{'item.edit.bitstreams.headers.actions' | translate}}
</th>
<th id="synchronized" scope="col" class="{{ columnSizes.columns[4].buildClasses() }} text-center">
{{'item.edit.bitstreams.headers.synchronized' | translate}}
</th>
</tr>
</thead>

Expand Down Expand Up @@ -74,6 +77,7 @@
</div>

</td>
<td></td>
Comment thread
jr-rk marked this conversation as resolved.
Outdated
</tr>

<ng-container *ngFor="let entry of (tableEntries$ | async)">
Expand Down Expand Up @@ -128,13 +132,14 @@
</div>
</div>
</td>
<td class="{{columnSizes.columns[4].buildClasses()}} row-element d-flex align-items-center justify-content-center">
<div class="float-left d-flex align-items-center overflow-hidden">
<span class="text-center">
<i [class]="isBitstreamSynchronized(entry) ? 'fas fa-check' : 'fas fa-times'"></i>
</span>
<span class="pl-1">|</span>
<div class="pl-1" [ngTemplateOutlet]="checksum"></div>
<td class="{{columnSizes.columns[4].buildClasses()}} row-element"
headers="{{ entry.nameStripped }} {{ bundleName }} synchronized">
<div class="d-flex align-items-center">
<span class="text-center">
<i [class]="isBitstreamSynchronized(entry) ? 'fas fa-check' : 'fas fa-times'"></i>
</span>
<span class="pl-1">|</span>
<div class="pl-1" [ngTemplateOutlet]="checksum"></div>
</div>
</td>
</tr>
Expand All @@ -149,7 +154,7 @@
</ng-template>

<ng-template #checksum let-entry="entry">
<div class="hover-container"
<div class="d-flex align-items-center"
(mouseenter)="showChecksumValues = true"
(mouseleave)="showChecksumValues = false"
*ngVar="(checkSum$ | async) as bitstreamChecksum">
Expand Down