UNPKG

my-test123

Version:
33 lines (32 loc) 1.07 kB
<div class="f8-group-filter" *ngFor="let item of groupTypes"> <a class="f8-group-filter__type" id="{{item.group}}" [routerLink]="[]" [queryParams]="showTree ? {q: fnBuildQueryParam(item), showTree: showTree} : {q: fnBuildQueryParam(item)}" [class.selected]="item.selected" *ngIf="item.showInSideBar"> <span class="dib margin-right-10 {{ item.icon }}" tooltip="{{sidePanelOpen ? '' : item.name }}" placement="right"></span> <span [class.dib]="sidePanelOpen" [class.hide]="!sidePanelOpen"> {{ item.name }}</span> </a> <!--If group is execution show a header and then embed the iteration component --> <div *ngIf="item.bucket === 'iteration'"> <div class="width-100 pull-left"> <fab-planner-iteration class="fab-planner-iteration" [takeFromInput]="false" [collection]="item.typeList" [witGroup]="item.name" [showTree]="showTree" [sidePanelOpen]="sidePanelOpen"> </fab-planner-iteration> </div> </div> </div>