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';
34
34
'[attr.tabindex]' : '_getTabindex()' ,
35
35
'[attr.disabled]' : '_getDisabledAttribute()' ,
36
36
'[attr.aria-disabled]' : 'disabled' ,
37
- '(click)' : '_handleClick($event)' ,
37
+ '(click)' : 'isInteractive ? _handleClick($event) : null ' ,
38
38
'(keydown)' : '_handleKeydown($event)' ,
39
39
} ,
40
40
} )
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ export interface MatChipEditedEvent extends MatChipEvent {
61
61
'[attr.aria-description]' : 'null' ,
62
62
'[attr.role]' : 'role' ,
63
63
'(focus)' : '_handleFocus()' ,
64
- '(click)' : '_handleClick($event)' ,
64
+ '(click)' : 'this._hasInteractiveActions() ? _handleClick($event) : null ' ,
65
65
'(dblclick)' : '_handleDoubleclick($event)' ,
66
66
} ,
67
67
providers : [
You can’t perform that action at this time.
0 commit comments