summaryrefslogtreecommitdiffstats
path: root/client/components/lists/listBody.js
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2017-08-26 03:24:55 +0300
committerLauri Ojansivu <x@xet7.org>2017-08-26 03:24:55 +0300
commit27340ec8f7e9407973fc1b3046997dd4612de0d2 (patch)
tree4a1cbe34e85e370addb35b6010979e82b31c7afa /client/components/lists/listBody.js
parent84d40bd3e397165b879e15035823dcb92ad1e5ee (diff)
parentfe5ea60847ef26d470ffd346e666cb0f49b000c9 (diff)
downloadwekan-27340ec8f7e9407973fc1b3046997dd4612de0d2.tar.gz
wekan-27340ec8f7e9407973fc1b3046997dd4612de0d2.tar.bz2
wekan-27340ec8f7e9407973fc1b3046997dd4612de0d2.zip
Merge branch 'username-matching' of https://github.com/jonasob/wekan into jonasob-username-matching
Diffstat (limited to 'client/components/lists/listBody.js')
-rw-r--r--client/components/lists/listBody.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/components/lists/listBody.js b/client/components/lists/listBody.js
index bdc812c7..724e805b 100644
--- a/client/components/lists/listBody.js
+++ b/client/components/lists/listBody.js
@@ -180,7 +180,7 @@ BlazeComponent.extendComponent({
$textarea.escapeableTextComplete([
// User mentions
{
- match: /\B@(\w*)$/,
+ match: /\B@([\w.]*)$/,
search(term, callback) {
const currentBoard = Boards.findOne(Session.get('currentBoard'));
callback($.map(currentBoard.activeMembers(), (member) => {