summaryrefslogtreecommitdiffstats
path: root/client/components/sidebar
diff options
context:
space:
mode:
authorMaxime Quandalle <maxime@quandalle.com>2015-10-31 09:26:55 -0700
committerMaxime Quandalle <maxime@quandalle.com>2015-11-08 23:17:24 -0800
commit5d77ad4f6ba70038486d734e97844c547e664e88 (patch)
treeaa4a0dd855b98ff94ac10fb7b2add3f7e1627dfd /client/components/sidebar
parent2b134ff7a986eb97f8ec360321be284a7a8ea11e (diff)
downloadwekan-5d77ad4f6ba70038486d734e97844c547e664e88.tar.gz
wekan-5d77ad4f6ba70038486d734e97844c547e664e88.tar.bz2
wekan-5d77ad4f6ba70038486d734e97844c547e664e88.zip
Finish the minicard editor auto-completion feature
This commit stands on the initial support implemented in #342. We now avoid error-prone parsing step by adding the member or the label directly to the card object. We also added support for `Tab` to completion on our textComplete component. Closes #342
Diffstat (limited to 'client/components/sidebar')
-rw-r--r--client/components/sidebar/sidebar.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/components/sidebar/sidebar.js b/client/components/sidebar/sidebar.js
index ccb9f2f5..ef071fe0 100644
--- a/client/components/sidebar/sidebar.js
+++ b/client/components/sidebar/sidebar.js
@@ -54,7 +54,7 @@ BlazeComponent.extendComponent({
},
reachNextPeak() {
- const activitiesComponent = this.childrenComponents('activities')[0];
+ const activitiesComponent = this.childComponents('activities')[0];
activitiesComponent.loadNextPage();
},