mirror of
https://github.com/element-hq/element-web
synced 2024-11-28 12:28:50 +03:00
Add a link from settings / devices to your user profile
Temporarily until you can verify devices in settings Fixes https://github.com/vector-im/riot-web/issues/13401
This commit is contained in:
parent
7b9c46a5a9
commit
0a89813de1
3 changed files with 14 additions and 1 deletions
|
@ -89,7 +89,7 @@ export default class UserSettingsDialog extends React.Component {
|
|||
tabs.push(new Tab(
|
||||
_td("Security & Privacy"),
|
||||
"mx_UserSettingsDialog_securityIcon",
|
||||
<SecurityUserSettingsTab />,
|
||||
<SecurityUserSettingsTab closeSettingsFn={this.props.onFinished} />,
|
||||
));
|
||||
if (SdkConfig.get()['showLabsSettings'] || SettingsStore.getLabsFeatures().length > 0) {
|
||||
tabs.push(new Tab(
|
||||
|
|
|
@ -50,6 +50,10 @@ export class IgnoredUser extends React.Component {
|
|||
}
|
||||
|
||||
export default class SecurityUserSettingsTab extends React.Component {
|
||||
static propTypes = {
|
||||
closeSettingsFn: PropTypes.func.isRequired,
|
||||
};
|
||||
|
||||
constructor() {
|
||||
super();
|
||||
|
||||
|
@ -85,6 +89,11 @@ export default class SecurityUserSettingsTab extends React.Component {
|
|||
);
|
||||
};
|
||||
|
||||
_onGoToUserProfileClick = () => {
|
||||
// close the settings dialog & let the default action run (ie. navigate to the link)
|
||||
this.props.closeSettingsFn();
|
||||
}
|
||||
|
||||
_onUserUnignored = async (userId) => {
|
||||
// Don't use this.state to get the ignored user list as it might be
|
||||
// ever so slightly outdated. Instead, prefer to get a fresh list and
|
||||
|
@ -283,6 +292,9 @@ export default class SecurityUserSettingsTab extends React.Component {
|
|||
return (
|
||||
<div className="mx_SettingsTab mx_SecurityUserSettingsTab">
|
||||
<div className="mx_SettingsTab_heading">{_t("Security & Privacy")}</div>
|
||||
<a href={"#/user/" + MatrixClientPeg.get().getUserId()} onClick={this._onGoToUserProfileClick}>
|
||||
{_t("Verify your devices in your User Profile")}
|
||||
</a>
|
||||
<div className="mx_SettingsTab_section">
|
||||
<span className="mx_SettingsTab_subheading">{_t("Sessions")}</span>
|
||||
<div className='mx_SettingsTab_subsectionText'>
|
||||
|
|
|
@ -843,6 +843,7 @@
|
|||
"Message search": "Message search",
|
||||
"Cross-signing": "Cross-signing",
|
||||
"Security & Privacy": "Security & Privacy",
|
||||
"Verify your devices in your User Profile": "Verify your devices in your User Profile",
|
||||
"Sessions": "Sessions",
|
||||
"A session's public name is visible to people you communicate with": "A session's public name is visible to people you communicate with",
|
||||
"Riot collects anonymous analytics to allow us to improve the application.": "Riot collects anonymous analytics to allow us to improve the application.",
|
||||
|
|
Loading…
Reference in a new issue