mirror of
https://github.com/element-hq/element-web.git
synced 2024-11-30 07:53:31 +03:00
Merge pull request #1276 from matrix-org/luke/fix-rte-completion-raw-disp-name
Use the rawDisplayName for the user provider completion
This commit is contained in:
commit
3639fc0c3c
1 changed files with 3 additions and 1 deletions
|
@ -54,7 +54,9 @@ export default class UserProvider extends AutocompleteProvider {
|
|||
completions = this.matcher.match(command[0]).map((user) => {
|
||||
const displayName = (user.name || user.userId || '').replace(' (IRC)', ''); // FIXME when groups are done
|
||||
return {
|
||||
completion: displayName,
|
||||
// Length of completion should equal length of text in decorator. draft-js
|
||||
// relies on the length of the entity === length of the text in the decoration.
|
||||
completion: user.rawDisplayName,
|
||||
suffix: range.start === 0 ? ': ' : ' ',
|
||||
href: 'https://matrix.to/#/' + user.userId,
|
||||
component: (
|
||||
|
|
Loading…
Reference in a new issue