summaryrefslogtreecommitdiffstats
path: root/client/components/main/editor.js
diff options
context:
space:
mode:
authorXavier Priour <xavier.priour@bubblyware.com>2015-12-13 20:02:51 +0100
committerXavier Priour <xavier.priour@bubblyware.com>2015-12-13 20:02:51 +0100
commite304185c23014fe3a4511d213535549e4bfeb207 (patch)
tree1e3a33f06db36b52f9bbfafb6163a652883a0cdf /client/components/main/editor.js
parent18697d45f652a119ba21b0cef42fbf732902bfa9 (diff)
parent0954cff5b470712210275a9c0699d85d6579ab54 (diff)
downloadwekan-e304185c23014fe3a4511d213535549e4bfeb207.tar.gz
wekan-e304185c23014fe3a4511d213535549e4bfeb207.tar.bz2
wekan-e304185c23014fe3a4511d213535549e4bfeb207.zip
Merge remote-tracking branch 'upstream/devel' into devel
Diffstat (limited to 'client/components/main/editor.js')
-rw-r--r--client/components/main/editor.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/components/main/editor.js b/client/components/main/editor.js
index 82fce641..a30a5e1d 100644
--- a/client/components/main/editor.js
+++ b/client/components/main/editor.js
@@ -28,7 +28,7 @@ Template.editor.onRendered(() => {
match: /\B@(\w*)$/,
search(term, callback) {
const currentBoard = Boards.findOne(Session.get('currentBoard'));
- callback(currentBoard.members.map((member) => {
+ callback(currentBoard.activeMembers().map((member) => {
const username = Users.findOne(member.userId).username;
return username.includes(term) ? username : null;
}));