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