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:
Alan Orth
2025-09-19 14:19:57 +03:00
parent 80865efc2b
commit 3a9eb87914

View File

@@ -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>