diff options
author | Maxime Quandalle <maxime@quandalle.com> | 2015-10-21 04:34:44 +0200 |
---|---|---|
committer | Maxime Quandalle <maxime@quandalle.com> | 2015-10-21 04:34:44 +0200 |
commit | c6b12dc5ada1b37d759796fefe0dbc5b327f130c (patch) | |
tree | 7211ed841db0d7e6673c500bfd152d923f2f6888 /client/components/boards | |
parent | 9154b06fc39f5cd046e1ed17a822e67a593b46c7 (diff) | |
download | wekan-c6b12dc5ada1b37d759796fefe0dbc5b327f130c.tar.gz wekan-c6b12dc5ada1b37d759796fefe0dbc5b327f130c.tar.bz2 wekan-c6b12dc5ada1b37d759796fefe0dbc5b327f130c.zip |
Upgrade peerlibrary:blaze-components to v0.14
This change includes method renames and others UI related packages
updates.
Diffstat (limited to 'client/components/boards')
-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 95590beb..517e53ba 100644 --- a/client/components/boards/boardBody.js +++ b/client/components/boards/boardBody.js @@ -34,7 +34,7 @@ BlazeComponent.extendComponent({ }, openNewListForm() { - this.componentChildren('addListForm')[0].open(); + this.childrenComponents('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.componentChildren('inlinedForm')[0].open(); + this.childrenComponents('inlinedForm')[0].open(); }, events() { |