mirror of
https://github.com/wekan/wekan.git
synced 2025-04-24 22:17:16 -04:00
Merge pull request #3544 from jrsupplee/issue-3539
Fix bug in adding new users #3539
This commit is contained in:
commit
c82de08886
1 changed files with 3 additions and 3 deletions
|
@ -567,9 +567,9 @@ Template.newUserPopup.events({
|
||||||
const isAdmin = templateInstance.find('.js-profile-isadmin').value.trim();
|
const isAdmin = templateInstance.find('.js-profile-isadmin').value.trim();
|
||||||
const isActive = templateInstance.find('.js-profile-isactive').value.trim();
|
const isActive = templateInstance.find('.js-profile-isactive').value.trim();
|
||||||
const email = templateInstance.find('.js-profile-email').value.trim();
|
const email = templateInstance.find('.js-profile-email').value.trim();
|
||||||
const importUsernames = templateInstance
|
const importUsernames = Users.parseImportUsernames(
|
||||||
.find('.js-import-usernames')
|
templateInstance.find('.js-import-usernames').value,
|
||||||
.value.trim();
|
);
|
||||||
|
|
||||||
Meteor.call(
|
Meteor.call(
|
||||||
'setCreateUser',
|
'setCreateUser',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue