mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-17 14:05:04 +08:00
Merge remote-tracking branch 'origin/develop' into develop
This commit is contained in:
commit
efbbd5ec0e
@ -101,8 +101,13 @@ export default class UserProvider extends AutocompleteProvider {
|
|||||||
|
|
||||||
let completions = [];
|
let completions = [];
|
||||||
const {command, range} = this.getCurrentCommand(query, selection, force);
|
const {command, range} = this.getCurrentCommand(query, selection, force);
|
||||||
if (command) {
|
|
||||||
completions = this.matcher.match(command[0]).map((user) => {
|
if (!command) return completions;
|
||||||
|
|
||||||
|
const fullMatch = command[0];
|
||||||
|
// Don't search if the query is a single "@"
|
||||||
|
if (fullMatch && fullMatch !== '@') {
|
||||||
|
completions = this.matcher.match(fullMatch).map((user) => {
|
||||||
const displayName = (user.name || user.userId || '').replace(' (IRC)', ''); // FIXME when groups are done
|
const displayName = (user.name || user.userId || '').replace(' (IRC)', ''); // FIXME when groups are done
|
||||||
return {
|
return {
|
||||||
// Length of completion should equal length of text in decorator. draft-js
|
// Length of completion should equal length of text in decorator. draft-js
|
||||||
|
Loading…
Reference in New Issue
Block a user