diff --git a/src/mixins/uiMention.js b/src/mixins/uiMention.js index 95f6645f6e..de83aa5ab2 100644 --- a/src/mixins/uiMention.js +++ b/src/mixins/uiMention.js @@ -27,7 +27,8 @@ export default { const list = users.map((user) => { const profile = window.location.protocol + '//' + getNextcloudUrl() + '/index.php/u/' + user.id return { - username: user.label, + label: user.label, + username: user.id, profile, } })