mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-10 17:33:24 +01:00
Fix load of empty users
This commit is contained in:
parent
40e89a58d4
commit
197ce17af1
@ -20,8 +20,8 @@ export default class RestClient implements Client {
|
||||
).then(response => {
|
||||
const account = response.data;
|
||||
success({
|
||||
lastName: account.lastName,
|
||||
firstName: account.fistName,
|
||||
lastName: account.lastName ? account.lastName : '',
|
||||
firstName: account.fistName ? account.fistName : '',
|
||||
email: account.email,
|
||||
});
|
||||
}).catch(error => {
|
||||
|
Loading…
Reference in New Issue
Block a user