Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit 5e21ca4

Browse files
authored
Fix space settings dialog having rogue title tooltip (#10293)
1 parent 4de9071 commit 5e21ca4

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

src/components/views/dialogs/SpaceSettingsDialog.tsx

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -84,17 +84,13 @@ const SpaceSettingsDialog: React.FC<IProps> = ({ matrixClient: cli, space, onFin
8484

8585
return (
8686
<BaseDialog
87-
title={_t("Space settings")}
87+
title={_t("Settings - %(spaceName)s", { spaceName: space.name || _t("Unnamed Space") })}
8888
className="mx_SpaceSettingsDialog"
8989
contentId="mx_SpaceSettingsDialog"
9090
onFinished={onFinished}
9191
fixedWidth={false}
9292
>
93-
<div
94-
className="mx_SpaceSettingsDialog_content"
95-
id="mx_SpaceSettingsDialog"
96-
title={_t("Settings - %(spaceName)s", { spaceName: space.name })}
97-
>
93+
<div className="mx_SpaceSettingsDialog_content" id="mx_SpaceSettingsDialog">
9894
<TabbedView tabs={tabs} />
9995
</div>
10096
</BaseDialog>

src/i18n/strings/en_EN.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3014,7 +3014,6 @@
30143014
"Proxy URL": "Proxy URL",
30153015
"Sections to show": "Sections to show",
30163016
"This groups your chats with members of this space. Turning this off will hide those chats from your view of %(spaceName)s.": "This groups your chats with members of this space. Turning this off will hide those chats from your view of %(spaceName)s.",
3017-
"Space settings": "Space settings",
30183017
"Settings - %(spaceName)s": "Settings - %(spaceName)s",
30193018
"To help us prevent this in future, please <a>send us logs</a>.": "To help us prevent this in future, please <a>send us logs</a>.",
30203019
"Missing session data": "Missing session data",

0 commit comments

Comments
 (0)