Skip to content
Snippets Groups Projects
Select Git revision
  • cd7789a58b51a020684277906283cc6f1b4e84e8
  • development default
  • production protected
3 results

deploy_prod.sh

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>