Skip to content

Commit

Permalink
fix icon
Browse files Browse the repository at this point in the history
  • Loading branch information
BBesrour committed Jan 6, 2025
1 parent b133abe commit fa0c86d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ <h5 class="modal-title">
<span jhiTranslate="artemisApp.buildQueue.filter.close"></span>
</button>
<button type="button" class="btn btn-danger" (click)="confirm()" [disabled]="!buttonEnabled()">
<fa-icon [icon]="faPause" />
<fa-icon [icon]="faTrash" />
<span jhiTranslate="artemisApp.buildAgents.clearDistributedData.clearData"></span>
</button>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Component, computed, inject, model } from '@angular/core';
import { FaIconComponent } from '@fortawesome/angular-fontawesome';
import { TranslateDirective } from 'app/shared/language/translate.directive';
import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
import { faPause, faTimes } from '@fortawesome/free-solid-svg-icons';
import { faTimes, faTrash } from '@fortawesome/free-solid-svg-icons';
import { FormsModule } from '@angular/forms';

@Component({
Expand All @@ -17,7 +17,7 @@ export class BuildAgentClearDistributedDataComponent {
confirmationText = model<string>('');

protected readonly faTimes = faTimes;
protected readonly faPause = faPause;
protected readonly faTrash = faTrash;

private readonly expectedConfirmationText = 'CLEAR DATA';

Expand Down

0 comments on commit fa0c86d

Please sign in to comment.