aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-forms/select/select-tags.component.html
blob: e1cd50882c02e65ee983671953cb8ffce9fd8aea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
<ng-select
  [items]="availableItems"
  [(ngModel)]="selectedItems"
  (ngModelChange)="onModelChange()"
  i18n-placeholder placeholder="Enter a new tag"
  [maxSelectedItems]="5"
  [clearable]="true"
  [addTag]="true"
  [multiple]="true"
  [isOpen]="false"
  [searchable]="true"
>
</ng-select>