mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 03:36:07 +03:00
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…
Reference in a new issue