mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-06 17:44:11 +00:00
src/app: use correct icon in item mapper
When adding mappings in the item mapper we should use the save icon rather than the trash icon!
This commit is contained in:
@@ -45,7 +45,7 @@
|
||||
[ngClass]="{'btn-danger': dangerConfirm, 'btn-primary': !dangerConfirm}"
|
||||
[dsBtnDisabled]="selectedIds?.length === 0"
|
||||
(click)="confirmSelected()">
|
||||
<i class="fas fa-trash"></i> {{confirmButton | translate}}
|
||||
<i class="fas" [ngClass]="{'fa-trash': dangerConfirm, 'fa-save': !dangerConfirm}"></i> {{confirmButton | translate}}
|
||||
</button>
|
||||
</div>
|
||||
</ng-container>
|
||||
|
Reference in New Issue
Block a user