mirror of
https://github.com/wekan/wekan.git
synced 2025-12-23 19:00:12 +01:00
Usernames should be able to include dots (.)
This commit is contained in:
parent
1b40c42cab
commit
fe5ea60847
3 changed files with 4 additions and 4 deletions
|
|
@ -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) => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue