Skip to content

Commit

Permalink
Move context menu item down and mark it danger
Browse files Browse the repository at this point in the history
  • Loading branch information
sei-bstein committed Jan 30, 2025
1 parent 9d477b0 commit 6ff35b3
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@
</button>
</li>
<li class="divider dropdown-divider"></li>
<li role="menuitem">
<button class="dropdown-item btn" (click)="handleViewChallenges(team)">View Challenges</button>
</li>
<li role="menuitem" *ngIf="hasStartedSession && !hasEndedSession">
<button class="dropdown-item btn" (click)="handleExtend(team)">Extend Session</button>
</li>
Expand Down Expand Up @@ -76,6 +73,9 @@
</ng-container>

<li class="divider dropdown-divider"></li>
<li role="menuitem">
<button class="dropdown-item btn btn-danger" (click)="handleViewChallenges(team)">Manage Challenges</button>
</li>
<ng-container *ngIf="hasStartedSession; else unenroll">
<li role="menuitem">
<button class="dropdown-item btn btn-danger"
Expand Down

0 comments on commit 6ff35b3

Please sign in to comment.