Skip to content

Commit

Permalink
fix: use correct aria role
Browse files Browse the repository at this point in the history
closes #403
  • Loading branch information
varnastadeus committed Mar 31, 2018
1 parent 8138c73 commit e55b674
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ng-select/ng-select.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export type CompareWithFn = (a: any, b: any) => boolean;
encapsulation: ViewEncapsulation.None,
changeDetection: ChangeDetectionStrategy.OnPush,
host: {
'role': 'dropdown',
'role': 'listbox',
'class': 'ng-select',
'[class.ng-single]': '!multiple',
}
Expand Down

0 comments on commit e55b674

Please sign in to comment.