Skip to content

Commit

Permalink
[DURACOM-248] set function call result in a class attribute
Browse files Browse the repository at this point in the history
(cherry picked from commit 87cff6c)
  • Loading branch information
Andrea Barbasso authored and alexandrevryghem committed Oct 10, 2024
1 parent e30bfff commit 5619d6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/item-page/versions/item-versions.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ <h2 *ngIf="displayTitle" class="h4">{{"item.version.history.head" | translate}}<
<thead>
<tr>
<th scope="col">{{ "item.version.history.table.version" | translate }}</th>
<th scope="col" *ngIf="(showSubmitter() | async)">{{ "item.version.history.table.editor" | translate }}</th>
<th scope="col" *ngIf="(showSubmitter$ | async)">{{ "item.version.history.table.editor" | translate }}</th>
<th scope="col">{{ "item.version.history.table.date" | translate }}</th>
<th scope="col">{{ "item.version.history.table.summary" | translate }}</th>
</tr>
Expand All @@ -31,7 +31,7 @@ <h2 *ngIf="displayTitle" class="h4">{{"item.version.history.head" | translate}}<
(versionsHistoryChange)="getAllVersions($event)"
></ds-item-versions-row-element-version>
</td>
<td class="version-row-element-editor" *ngIf="(showSubmitter() | async)">
<td class="version-row-element-editor" *ngIf="(showSubmitter$ | async)">
{{ versionDTO.version.submitterName }}
</td>
<td class="version-row-element-date">
Expand Down

0 comments on commit 5619d6b

Please sign in to comment.