Files
dspace-angular/src/app/shared/dso-page/dso-page-version-button/dso-page-version-button.component.html
2021-09-29 16:33:23 +02:00

9 lines
401 B
HTML

<button *ngIf="isAuthorized$ | async"
class="edit-button btn btn-dark btn-sm"
(click)="createNewVersion()"
[disabled]="disableNewVersionButton$ | async"
[ngbTooltip]="tooltipMsg$ | async | translate"
role="button" [title]="tooltipMsg$ | async |translate" [attr.aria-label]="tooltipMsg$ | async | translate">
<i class="fas fa-code-branch fa-fw"></i>
</button>