Skip to content

Commit

Permalink
fix(tab-button): layout is mutable (#16332)
Browse files Browse the repository at this point in the history
  • Loading branch information
manucorporat authored Nov 15, 2018
1 parent bd3ca42 commit 02a266c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/components/tab-button/tab-button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export class TabButton implements ComponentInterface {
* Set the layout of the text and icon in the tab bar.
* It defaults to `'icon-top'`.
*/
@Prop() layout?: TabButtonLayout;
@Prop({ mutable: true }) layout?: TabButtonLayout;

/**
* The URL which will be used as the `href` within this tab's button anchor.
Expand Down

0 comments on commit 02a266c

Please sign in to comment.