Skip to content
Snippets Groups Projects
Select Git revision
  • a3e61fc6ca0400be89f187e0fb536fcae3792c1d
  • master default protected
  • csv_export
  • ndex
  • v1.1.18-rc2
  • v1.1.17
  • v1.1.16
  • v1.1.16-rc12
  • v1.1.16-rc11
  • v1.1.16-rc10
  • v1.1.16-rc9
  • v1.1.16-rc8
  • v1.1.16-rc7
  • v1.1.16-rc4
  • v1.1.16-rc3
  • v1.1.16-rc1
  • v1.1.6-rc1
  • v1.1.15
  • v1.1.15-rc7
  • v1.1.15-rc6
  • v1.1.15-rc3
  • v1.1.15-rc1
  • v1.1.14
  • v1.1.13
24 results

query-tile.component.html

Blame
  • user avatar
    AndiMajore authored
    a3e61fc6
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    query-tile.component.html 528 B
    <div class="content">
      <ng-select
        [items]="queryItems"
        bindLabel="data.label"
        bindValue="data.label"
        [virtualScroll]="true"
        [placeholder]="getLabel()"
        [hideSelected]="true"
        [searchFn]="querySearch"
        (change)="select($event)"
        pTooltip="Find nodes in the network."
        [tooltipStyleClass]="'drgstn drgstn-tooltip drgstn-tooltip-top'"
        tooltipPosition="top"
      >
        <ng-template ng-option-tmp let-item="item">
          <span>{{ item.data.label }}</span>
        </ng-template>
      </ng-select>
    </div>