diff --git a/app/views/RoomInfoView/index.js b/app/views/RoomInfoView/index.js index 93a7e3a16..182651b9b 100644 --- a/app/views/RoomInfoView/index.js +++ b/app/views/RoomInfoView/index.js @@ -34,7 +34,7 @@ import Navigation from '../../lib/Navigation'; const getRoomTitle = (room, type, name, username, statusText, theme) => (type === 'd' ? ( <> - { name } + { name } {username && {`@${ username }`}} {!!statusText && } @@ -42,7 +42,7 @@ const getRoomTitle = (room, type, name, username, statusText, theme) => (type == : ( - {RocketChat.getRoomTitle(room)} + {RocketChat.getRoomTitle(room)} ) );