Skip to content

Commit

Permalink
ALCS-2447 Change icon color
Browse files Browse the repository at this point in the history
  • Loading branch information
fbarreta committed Jan 17, 2025
1 parent 0d14a89 commit 9e105d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ <h4 *ngIf="condition.type">{{ condition.type.label }}</h4>
<ng-container matColumnDef="action">
<th mat-header-cell *matHeaderCellDef class="multiple-action">Action</th>
<td mat-cell *matCellDef="let element">
<button mat-icon-button color="primary" (click)="onDeleteDate(element.uuid)" *ngIf="dates.length > 1">
<button mat-icon-button color="warn" (click)="onDeleteDate(element.uuid)" *ngIf="dates.length > 1">
<mat-icon>delete</mat-icon>
</button>
</td>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ <h4 *ngIf="condition.type">{{ condition.type.label }}</h4>
<ng-container matColumnDef="action">
<th mat-header-cell *matHeaderCellDef class="multiple-action">Action</th>
<td mat-cell *matCellDef="let element">
<button mat-icon-button color="primary" (click)="onDeleteDate(element.uuid)" *ngIf="dates.length > 1">
<button mat-icon-button color="warn" (click)="onDeleteDate(element.uuid)" *ngIf="dates.length > 1">
<mat-icon>delete</mat-icon>
</button>
</td>
Expand Down

0 comments on commit 9e105d9

Please sign in to comment.