mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
[ACS-3770] Stop select event propagation to restore keyboard functionality (#7967)
This commit is contained in:
parent
39e458abb0
commit
54c1dbeca5
@ -26,7 +26,9 @@ import { RoleModel } from '../../models/role.model';
|
||||
(click)="$event.stopPropagation()"
|
||||
[placeholder]="placeholder | translate"
|
||||
[value]="value"
|
||||
(selectionChange)="onRoleChanged($event.value)">
|
||||
(selectionChange)="onRoleChanged($event.value)"
|
||||
(keyup.arrowdown)="$event.stopPropagation()"
|
||||
(keyup.arrowup)="$event.stopPropagation()">
|
||||
<mat-option *ngFor="let role of roles" [value]="role.role">
|
||||
{{ role.label | adfLocalizedRole }}
|
||||
</mat-option>
|
||||
|
Loading…
x
Reference in New Issue
Block a user