summaryrefslogtreecommitdiffstats
path: root/client/components/lists/listBody.js
diff options
context:
space:
mode:
authorJonas Oberg <jonas@ffkp.se>2017-08-25 08:22:20 +0200
committerJonas Oberg <jonas@ffkp.se>2017-08-25 08:22:20 +0200
commitfe5ea60847ef26d470ffd346e666cb0f49b000c9 (patch)
tree56dfb202c5df87dca3300d5cc26ca5af10e7b3e3 /client/components/lists/listBody.js
parent1b40c42cab9b6dd8b5248af92c7519b5b14cc525 (diff)
downloadwekan-fe5ea60847ef26d470ffd346e666cb0f49b000c9.tar.gz
wekan-fe5ea60847ef26d470ffd346e666cb0f49b000c9.tar.bz2
wekan-fe5ea60847ef26d470ffd346e666cb0f49b000c9.zip
Usernames should be able to include dots (.)
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) => {