Skip to content

Commit

Permalink
fix(dashboard): fix mistyped ngbDropdownMenu in some ngbDropdown ul e…
Browse files Browse the repository at this point in the history
…lements (#1458)
  • Loading branch information
budavariam authored and lexzhukov committed Dec 15, 2017
1 parent 75fb2ed commit fa83572
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<button class="btn btn-primary" type="button" ngbDropdownToggle>
{{ position }}
</button>
<ul ngbDropdown class="dropdown-menu">
<ul ngbDropdownMenu class="dropdown-menu">
<li class="dropdown-item" *ngFor="let p of positions" (click)="position = p">
{{ p }}
</li>
Expand All @@ -26,7 +26,7 @@
<button class="btn btn-primary" type="button" ngbDropdownToggle>
{{ animationType }}
</button>
<ul ngbDropdown class="dropdown-menu">
<ul ngbDropdownMenu class="dropdown-menu">
<li class="dropdown-item" *ngFor="let at of animations" (click)="animationType = at">
{{ at }}
</li>
Expand Down Expand Up @@ -60,7 +60,7 @@
<button class="btn btn-primary" type="button" ngbDropdownToggle>
{{ type }}
</button>
<ul ngbDropdown class="dropdown-menu">
<ul ngbDropdownMenu class="dropdown-menu">
<li class="dropdown-item" *ngFor="let t of types" (click)="type = t">{{ t }}</li>
</ul>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/app/pages/dashboard/traffic/traffic.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { NbThemeService } from '@nebular/theme';
[ngClass]="{ 'btn-success': currentTheme == 'default', 'btn-primary': currentTheme != 'default'}">
{{ type }}
</button>
<ul ngbDropdown class="dropdown-menu">
<ul ngbDropdownMenu class="dropdown-menu">
<li class="dropdown-item" *ngFor="let t of types" (click)="type = t">{{ t }}</li>
</ul>
</div>
Expand Down

0 comments on commit fa83572

Please sign in to comment.