-
-
Notifications
You must be signed in to change notification settings - Fork 829
Conversation
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
code looks good to me, but I want to run the feature by @lampholder before merging.
Looks like it navigates the user to the room when they click the setting icon, which is the only questionable part imo.
I bounced this past Nad. Broad support for the idea, with just a few tweaks to the UX required before merging:
How's that sound? |
Turns out that work already happened for the redesign 🤷♂️ |
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
…github.com:matrix-org/matrix-react-sdk into t3chguy/room_context_menu_settings
@@ -60,9 +61,12 @@ export default class RoomSettingsDialog extends React.Component { | |||
render() { | |||
const BaseDialog = sdk.getComponent('views.dialogs.BaseDialog'); | |||
|
|||
const room = MatrixClientPeg.get().getRoom(this.props.roomId); | |||
const title = _t("Room Settings") + ' - ' + room.name; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should probably be _t("Room Settings - %(roomName)s", { roomName: room.name })
because translations
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
Fixes element-hq/element-web#8781
Signed-off-by: Michael Telatynski 7t3chguy@gmail.com