MOBILE-2431 mainmenu: Fix badge of menu items
parent
82ba32d7f7
commit
83f0df210f
|
@ -18,7 +18,7 @@
|
|||
<ion-item *ngFor="let handler of handlers" [ngClass]="['core-moremenu-handler', handler.class]" (click)="openHandler(handler)" title="{{ handler.title | translate }}" detail-push>
|
||||
<core-icon [name]="handler.icon" item-start></core-icon>
|
||||
<p>{{ handler.title | translate}}</p>
|
||||
<ion-badge item-end *ngIf="handler.showBadge" [hidden]="handler.loading || !handler.badge">{{badge}}</ion-badge>
|
||||
<ion-badge item-end *ngIf="handler.showBadge" [hidden]="handler.loading || !handler.badge">{{handler.badge}}</ion-badge>
|
||||
<ion-spinner item-end *ngIf="handler.showBadge && handler.loading"></ion-spinner>
|
||||
</ion-item>
|
||||
<div *ngFor="let item of customItems" class="core-moremenu-customitem">
|
||||
|
|
Loading…
Reference in New Issue