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!

(cherry picked from commit 3a9eb87914)
This commit is contained in:
Alan Orth
2025-09-19 14:19:57 +03:00
committed by github-actions[bot]
parent 06d0177329
commit aaf534467e

View File

@@ -45,7 +45,7 @@
[ngClass]="{'btn-danger': dangerConfirm, 'btn-primary': !dangerConfirm}" [ngClass]="{'btn-danger': dangerConfirm, 'btn-primary': !dangerConfirm}"
[dsBtnDisabled]="selectedIds?.length === 0" [dsBtnDisabled]="selectedIds?.length === 0"
(click)="confirmSelected()"> (click)="confirmSelected()">
<i class="fas fa-trash"></i> {{confirmButton | translate}} <i class="fas" [ngClass]="{'fa-trash': dangerConfirm, 'fa-save': !dangerConfirm}"></i> {{confirmButton | translate}}
</button> </button>
</div> </div>
</ng-container> </ng-container>