mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-11 01:43:23 +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 => {
|
).then(response => {
|
||||||
const account = response.data;
|
const account = response.data;
|
||||||
success({
|
success({
|
||||||
lastName: account.lastName,
|
lastName: account.lastName ? account.lastName : '',
|
||||||
firstName: account.fistName,
|
firstName: account.fistName ? account.fistName : '',
|
||||||
email: account.email,
|
email: account.email,
|
||||||
});
|
});
|
||||||
}).catch(error => {
|
}).catch(error => {
|
||||||
|
Loading…
Reference in New Issue
Block a user