[FIX]Update profile name (#4513)

This commit is contained in:
Reinaldo Neto 2022-09-16 12:04:25 -03:00 committed by Diego Mello
parent 101a137a35
commit 661b3f9a22
2 changed files with 5 additions and 2 deletions

View File

@ -1,7 +1,8 @@
import React from 'react'; import React from 'react';
export interface IProfileParams { export interface IProfileParams {
name: string; realname?: string;
name?: string;
username: string; username: string;
email: string | null; email: string | null;
newPassword: string; newPassword: string;

View File

@ -226,7 +226,7 @@ class ProfileView extends React.Component<IProfileViewProps, IProfileViewState>
// Name // Name
if (user.name !== name) { if (user.name !== name) {
params.name = name; params.realname = name;
} }
// Username // Username
@ -295,6 +295,8 @@ class ProfileView extends React.Component<IProfileViewProps, IProfileViewState>
if (result) { if (result) {
logEvent(events.PROFILE_SAVE_CHANGES); logEvent(events.PROFILE_SAVE_CHANGES);
params.name = params.realname;
delete params.realname;
if (customFields) { if (customFields) {
dispatch(setUser({ customFields, ...params })); dispatch(setUser({ customFields, ...params }));
} else { } else {