File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ import {_StructuralStylesLoader} from '../core';
3434 '[attr.tabindex]' : '_getTabindex()' ,
3535 '[attr.disabled]' : '_getDisabledAttribute()' ,
3636 '[attr.aria-disabled]' : 'disabled' ,
37- '(click)' : '_handleClick($event)' ,
37+ '(click)' : 'isInteractive ? _handleClick($event) : null ' ,
3838 '(keydown)' : '_handleKeydown($event)' ,
3939 } ,
4040} )
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ export interface MatChipEditedEvent extends MatChipEvent {
6161 '[attr.aria-description]' : 'null' ,
6262 '[attr.role]' : 'role' ,
6363 '(focus)' : '_handleFocus()' ,
64- '(click)' : '_handleClick($event)' ,
64+ '(click)' : 'this._hasInteractiveActions() ? _handleClick($event) : null ' ,
6565 '(dblclick)' : '_handleDoubleclick($event)' ,
6666 } ,
6767 providers : [
You can’t perform that action at this time.
0 commit comments