Skip to content

Commit

Permalink
Propagate only the third argument (options) passed to showChildView
Browse files Browse the repository at this point in the history
  • Loading branch information
blikblum authored and paulfalgout committed Nov 15, 2017
1 parent 1febce8 commit 2b2bee3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mixins/regions.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,9 @@ export default {
return this._getRegions();
},

showChildView(name, view, ...args) {
showChildView(name, view, options) {
const region = this.getRegion(name);
region.show(view, ...args);
region.show(view, options);
return view;
},

Expand Down

0 comments on commit 2b2bee3

Please sign in to comment.