Skip to content

Commit 8ea28bf

Browse files
authored
Merge pull request #2063 from bcgov/feature/ALCS-2447-fix-conditions-delete-icon-color
ALCS-2447 Change icon color
2 parents 7f9d308 + 9e105d9 commit 8ea28bf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

alcs-frontend/src/app/features/application/decision/conditions/condition/condition.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ <h4 *ngIf="condition.type">{{ condition.type.label }}</h4>
182182
<ng-container matColumnDef="action">
183183
<th mat-header-cell *matHeaderCellDef class="multiple-action">Action</th>
184184
<td mat-cell *matCellDef="let element">
185-
<button mat-icon-button color="primary" (click)="onDeleteDate(element.uuid)" *ngIf="dates.length > 1">
185+
<button mat-icon-button color="warn" (click)="onDeleteDate(element.uuid)" *ngIf="dates.length > 1">
186186
<mat-icon>delete</mat-icon>
187187
</button>
188188
</td>

alcs-frontend/src/app/features/notice-of-intent/decision/conditions/condition/condition.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ <h4 *ngIf="condition.type">{{ condition.type.label }}</h4>
127127
<ng-container matColumnDef="action">
128128
<th mat-header-cell *matHeaderCellDef class="multiple-action">Action</th>
129129
<td mat-cell *matCellDef="let element">
130-
<button mat-icon-button color="primary" (click)="onDeleteDate(element.uuid)" *ngIf="dates.length > 1">
130+
<button mat-icon-button color="warn" (click)="onDeleteDate(element.uuid)" *ngIf="dates.length > 1">
131131
<mat-icon>delete</mat-icon>
132132
</button>
133133
</td>

0 commit comments

Comments
 (0)