Web: People: Profile: Fixed the problem of displaying a different avatar when editing profile.

This commit is contained in:
TatianaLopaeva 2021-04-06 14:11:02 +03:00
parent 2c7c5532eb
commit 3a35fb09fd

View File

@ -98,7 +98,9 @@ class SectionBodyContent extends React.PureComponent {
onEditSubscriptionsClick = () => console.log("Edit subscriptions onClick()");
onEditProfileClick = () =>
onEditProfileClick = () => {
this.props.avatarMax && this.props.setAvatarMax(null);
this.props.history.push(
combineUrl(
AppServerConfig.proxyURL,
@ -106,6 +108,7 @@ class SectionBodyContent extends React.PureComponent {
`/edit/${this.props.profile.userName}`
)
);
};
render() {
const {
@ -208,5 +211,7 @@ export default withRouter(
viewer: auth.userStore.user,
isTabletView: auth.settingsStore.isTabletView,
isSelf: peopleStore.targetUserStore.isMe,
avatarMax: peopleStore.avatarEditorStore.avatarMax,
setAvatarMax: peopleStore.avatarEditorStore.setAvatarMax,
}))(observer(withTranslation("Profile")(SectionBodyContent)))
);