Skip to content

Commit

Permalink
code improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
MarianS23 committed Dec 2, 2024
1 parent 4a87474 commit e372f23
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ <h5 *ngIf="userRole === Role.provider">
<div
fxLayout="column"
fxLayoutAlign="start start">
<button class="btn btn-gray" (click)="leave.emit(application)" [ngClass]="(application.status === ApplicationStatuses.Left || application.status === ApplicationStatuses.Rejected) && 'hidden'">
<button class="btn btn-gray" (click)="leave.emit(application)" [class.hidden]="application.status === ApplicationStatuses.Left || application.status === ApplicationStatuses.Rejected">
<p>{{ 'BUTTONS.LEAVE_WORKSHOP' | translate }}</p>
</button>
</div>
Expand Down

0 comments on commit e372f23

Please sign in to comment.