Skip to content

Commit

Permalink
dropdown fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Oluwadaminiola committed Jun 16, 2022
1 parent 471c10f commit d68233c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ <h3 class="margin-bottom__8px">Teams</h3>
<ul>
<li
class="text__capitalize"
[ngClass]="{ active: filterOption == filterOption }"
[ngClass]="{ active: selectedFilterOption == filterOption }"
*ngFor="let filterOption of filterOptions"
(click)="showFilterDropdown = false; showOverlay = false; toggleFilter(filterOption)"
>
Expand All @@ -34,11 +34,11 @@ <h3 class="margin-bottom__8px">Teams</h3>
</ul>
</div>
</div>
<button class="button button__small button__primary margin-left__24px" routerLink="./new" (click)="currentId = ''">Add team member</button>
<button class="button button__small button__primary margin-left__16px" routerLink="./new" (click)="currentId = ''">Add team member</button>
</div>
</div>

<div *ngIf="isFetchingTeamMembers || isFetchingPendingInvites">
<div *ngIf="(selectedFilterOption === 'active' && isFetchingTeamMembers) || (selectedFilterOption === 'pending' && isFetchingPendingInvites)">
<convoy-table-loader [tableClass]="'table__no-style'" [tableHead]="tableHead"></convoy-table-loader>
</div>

Expand Down

0 comments on commit d68233c

Please sign in to comment.