diff options
Diffstat (limited to 'client/src/app/shared')
-rw-r--r-- | client/src/app/shared/shared-forms/select/select-options.component.html | 1 | ||||
-rw-r--r-- | client/src/app/shared/shared-forms/select/select-options.component.ts | 5 |
2 files changed, 4 insertions, 2 deletions
diff --git a/client/src/app/shared/shared-forms/select/select-options.component.html b/client/src/app/shared/shared-forms/select/select-options.component.html index 48eca1cf5..6d0d7e925 100644 --- a/client/src/app/shared/shared-forms/select/select-options.component.html +++ b/client/src/app/shared/shared-forms/select/select-options.component.html | |||
@@ -4,6 +4,7 @@ | |||
4 | [(ngModel)]="selectedId" | 4 | [(ngModel)]="selectedId" |
5 | (ngModelChange)="onModelChange()" | 5 | (ngModelChange)="onModelChange()" |
6 | [clearable]="clearable" | 6 | [clearable]="clearable" |
7 | [labelForId]="labelForId" | ||
7 | [searchable]="searchable" | 8 | [searchable]="searchable" |
8 | 9 | ||
9 | bindLabel="label" | 10 | bindLabel="label" |
diff --git a/client/src/app/shared/shared-forms/select/select-options.component.ts b/client/src/app/shared/shared-forms/select/select-options.component.ts index 3ba24c732..f0abd1a68 100644 --- a/client/src/app/shared/shared-forms/select/select-options.component.ts +++ b/client/src/app/shared/shared-forms/select/select-options.component.ts | |||
@@ -1,5 +1,5 @@ | |||
1 | import { Component, Input, forwardRef } from '@angular/core' | 1 | import { Component, forwardRef, Input } from '@angular/core' |
2 | import { NG_VALUE_ACCESSOR, ControlValueAccessor } from '@angular/forms' | 2 | import { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms' |
3 | 3 | ||
4 | export type SelectOptionsItem = { | 4 | export type SelectOptionsItem = { |
5 | id: string | number | 5 | id: string | number |
@@ -26,6 +26,7 @@ export class SelectOptionsComponent implements ControlValueAccessor { | |||
26 | @Input() clearable = false | 26 | @Input() clearable = false |
27 | @Input() searchable = false | 27 | @Input() searchable = false |
28 | @Input() groupBy: string | 28 | @Input() groupBy: string |
29 | @Input() labelForId: string | ||
29 | 30 | ||
30 | selectedId: number | string | 31 | selectedId: number | string |
31 | 32 | ||