We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1eda8e commit f8d4e76Copy full SHA for f8d4e76
addon/components/paper-item.js
@@ -85,9 +85,9 @@ export default class PaperItem extends Component.extend(ParentMixin) {
85
click() {
86
this.proxiedComponents.forEach((component) => {
87
if (
88
- component.processProxy &&
+ !!component.processProxy &&
89
!component.disabled &&
90
- component.bubbles | !this.hasPrimaryAction
+ !!(component.bubbles || !this.hasPrimaryAction)
91
) {
92
component.processProxy();
93
}
0 commit comments