autocomplete: add space after completing room name
This commit is contained in:
parent
f4c0baaa2f
commit
edd5903ed7
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ export default class RoomProvider extends AutocompleteProvider {
|
|||
completions = this.fuse.search(command[0]).map(room => {
|
||||
let displayAlias = getDisplayAliasForRoom(room.room) || room.roomId;
|
||||
return {
|
||||
completion: displayAlias,
|
||||
completion: displayAlias + ' ',
|
||||
component: (
|
||||
<PillCompletion initialComponent={<RoomAvatar width={24} height={24} room={room.room} />} title={room.name} description={displayAlias} />
|
||||
),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue