Skip to content

Commit

Permalink
Select FormControl should not be private
Browse files Browse the repository at this point in the history
Signed-off-by: Akiff Manji <[email protected]>
  • Loading branch information
amanji committed Jan 4, 2021
1 parent 2e2a698 commit 3d65c6f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export interface ISelectOption {
],
})
export class SelectComponent implements ControlValueAccessor {
private select = new FormControl('');
select = new FormControl('');

@Input() options: ISelectOption[];
@Input() translateSelector: string;
Expand Down

0 comments on commit 3d65c6f

Please sign in to comment.