Skip to content

Commit

Permalink
fix(item-option): enable ripple-effect
Browse files Browse the repository at this point in the history
  • Loading branch information
manucorporat committed Sep 13, 2018
1 parent 7f59f91 commit 428a5da
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion core/src/components/item-option/item-option.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,10 @@ export class ItemOption {

hostData() {
return {
'ion-activatable': true,
class: {
...createColorClasses(this.color),
'item-option-expandable': this.expandable
'item-option-expandable': this.expandable,
}
};
}
Expand All @@ -77,6 +78,7 @@ export class ItemOption {
<slot name="bottom" />
<slot name="end"></slot>
</span>
{this.mode === 'md' && <ion-ripple-effect />}
</TagType>
);
}
Expand Down

0 comments on commit 428a5da

Please sign in to comment.