Skip to content

Commit

Permalink
Change draft cancel icon to simple x icon (#2970)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nateowami authored Jan 21, 2025
1 parent 44aa8bd commit d6caf80
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ <h3>{{ t("draft_queued_header") }}</h3>
<div class="button-strip">
@if (canCancel(draftJob)) {
<button mat-flat-button color="primary" (click)="cancel()">
<mat-icon>highlight_off</mat-icon>
<mat-icon>close</mat-icon>
{{ t("cancel_generation_button") }}
</button>
}
Expand All @@ -283,7 +283,7 @@ <h3>{{ t("draft_active_header") }}</h3>
<div class="button-strip">
@if (canCancel(draftJob)) {
<button mat-flat-button color="primary" (click)="cancel()">
<mat-icon>highlight_off</mat-icon>
<mat-icon>close</mat-icon>
{{ t("cancel_generation_button") }}
</button>
}
Expand Down

0 comments on commit d6caf80

Please sign in to comment.