mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-17 23:13:04 +00:00

Add a title to the move page Disable submit button when no target is selected Add operation in progress indicator Use updated inputSuggestion to fix bug with value selection
15 lines
698 B
HTML
15 lines
698 B
HTML
<div class="col-3 float-left d-flex h-100 action-label">
|
|
<span class="justify-content-center align-self-center">
|
|
{{'item.edit.tabs.status.buttons.' + operation.operationKey + '.label' | translate}}
|
|
</span>
|
|
</div>
|
|
<div *ngIf="!operation.disabled" class="col-9 float-left action-button">
|
|
<a class="btn btn-outline-secondary" [routerLink]="operation.operationUrl">
|
|
{{'item.edit.tabs.status.buttons.' + operation.operationKey + '.button' | translate}}
|
|
</a>
|
|
</div>
|
|
<div *ngIf="operation.disabled" class="col-9 float-left action-button">
|
|
<span class="btn btn-danger">
|
|
{{'item.edit.tabs.status.buttons.' + operation.operationKey + '.button' | translate}}
|
|
</span>
|
|
</div> |