Select Git revision
query-tile.component.html
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>