diff options
author | Maxime Quandalle <maxime@quandalle.com> | 2015-10-29 15:31:33 +0100 |
---|---|---|
committer | Maxime Quandalle <maxime@quandalle.com> | 2015-10-29 15:35:33 +0100 |
commit | 68521fc1c3d52b6b7b6d39931618c90338b5b3aa (patch) | |
tree | 5ca4df1d678cc6b508591d29e76d2cc3fc6baaf6 /client | |
parent | dd101543920148a48b74541ebbbaca97f6bc6d11 (diff) | |
download | wekan-68521fc1c3d52b6b7b6d39931618c90338b5b3aa.tar.gz wekan-68521fc1c3d52b6b7b6d39931618c90338b5b3aa.tar.bz2 wekan-68521fc1c3d52b6b7b6d39931618c90338b5b3aa.zip |
Update packages and update Meteor to 1.2.1
Blaze-components had yet another methods rename.
Diffstat (limited to 'client')
-rw-r--r-- | client/components/boards/boardBody.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/components/boards/boardBody.js b/client/components/boards/boardBody.js index e7cfc791..28257d00 100644 --- a/client/components/boards/boardBody.js +++ b/client/components/boards/boardBody.js @@ -34,7 +34,7 @@ BlazeComponent.extendComponent({ }, openNewListForm() { - this.childrenComponents('addListForm')[0].open(); + this.childComponents('addListForm')[0].open(); }, // XXX Flow components allow us to avoid creating these two setter methods by @@ -179,7 +179,7 @@ BlazeComponent.extendComponent({ // Proxy open() { - this.childrenComponents('inlinedForm')[0].open(); + this.childComponents('inlinedForm')[0].open(); }, events() { |