File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
src/components/mgt-people-picker Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -560,7 +560,7 @@ export class MgtPeoplePicker extends MgtTemplatedComponent {
560560 'list-person' : true
561561 } ;
562562 return html `
563- < li class ="${ classMap ( listPersonClasses ) } " @click ="${ e => this . onPersonClick ( person , e ) } ">
563+ < li class ="${ classMap ( listPersonClasses ) } " @click ="${ e => this . onPersonClick ( person ) } ">
564564 ${ this . renderPersonResult ( person ) }
565565 </ li >
566566 ` ;
@@ -880,8 +880,7 @@ export class MgtPeoplePicker extends MgtTemplatedComponent {
880880 this . handleUserSearch ( input ) ;
881881 }
882882
883- private onPersonClick ( person : IDynamicPerson , e : MouseEvent ) : void {
884- e . stopPropagation ( ) ;
883+ private onPersonClick ( person : IDynamicPerson ) : void {
885884 this . addPerson ( person ) ;
886885 this . hideFlyout ( ) ;
887886
You can’t perform that action at this time.
0 commit comments