Skip to content
Snippets Groups Projects
Select Git revision
  • a5efbbba6de6dc2a552f9bc5806b4d80d328a492
  • 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
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    query-tile.component.html 618 B
    <div class="content">
      <ng-select [items]="queryItems" bindLabel="id" bindValue="data" [virtualScroll]="true" class="custom"
                 placeholder="Search..." [hideSelected]="true" [searchFn]="querySearch" (change)="select($event)" data-tooltip="Find proteins in the network.">
        <ng-template ng-option-tmp let-item="item">
          <b *ngIf="item.type == 'protein'"> {{item.data.name}}</b>
          <span><small *ngIf="item.type === 'protein'">Host Protein</small> | </span>
          <span *ngIf="item.type == 'protein'"><small>AC: <b>{{item.data.uniprotAc}}</b></small> </span>
        </ng-template>
      </ng-select>
    </div>