Skip to content

Commit

Permalink
invert boolean on deploy button in external game admin.
Browse files Browse the repository at this point in the history
  • Loading branch information
sei-bstein committed Nov 17, 2023
1 parent 1d60ad6 commit 4abfb0b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ <h1>{{context.game.name}}</h1>

<div *ngIf="context.teams.length"
class="global-controls-container my-2 d-flex align-items-center justify-content-end">
<app-confirm-button btnClass="btn btn-lg btn-info" [disabled]="canDeploy"
<app-confirm-button btnClass="btn btn-lg btn-info" [disabled]="!canDeploy"
(confirm)="handlePreDeployAllClick(context.game.id)"
[tooltip]="context.overallDeployStatus == 'deploying' ? 'Resources are being deployed for this game. Hang tight...' : ''">
Predeploy all
Expand Down

0 comments on commit 4abfb0b

Please sign in to comment.