forked from ddrilling/asb_cloud_front
CF2-85: Added error body text in register error notifications
This commit is contained in:
parent
2f6e2fbc4e
commit
30efdaed17
@ -40,7 +40,7 @@ export default function Login() {
|
|||||||
history.push('well')
|
history.push('well')
|
||||||
}catch(e){
|
}catch(e){
|
||||||
if(e.status === 400)
|
if(e.status === 400)
|
||||||
openNotificationError(e.message)
|
openNotificationError(e.body)
|
||||||
console.error(`Error ${e}`)
|
console.error(`Error ${e}`)
|
||||||
|
|
||||||
setErrorVisible(true)
|
setErrorVisible(true)
|
||||||
|
@ -95,7 +95,7 @@ export default function Register() {
|
|||||||
openNotification("Заявка на регистрацию отправлена.", 'success')
|
openNotification("Заявка на регистрацию отправлена.", 'success')
|
||||||
history.push("/login");
|
history.push("/login");
|
||||||
}catch(e){
|
}catch(e){
|
||||||
openNotification(e.message, 'error')
|
openNotification(e.body, 'error')
|
||||||
console.error(`Error ${e}`)
|
console.error(`Error ${e}`)
|
||||||
setLoader(false)
|
setLoader(false)
|
||||||
}
|
}
|
||||||
@ -158,7 +158,7 @@ export default function Register() {
|
|||||||
{createInput('name', 'Имя', false)}
|
{createInput('name', 'Имя', false)}
|
||||||
{createInput('surName', 'Фамилия', false)}
|
{createInput('surName', 'Фамилия', false)}
|
||||||
{createInput('patronymic', 'Отчество',false)}
|
{createInput('patronymic', 'Отчество',false)}
|
||||||
{createInput('email', 'Отчество',false)}
|
{createInput('email', 'Email',false)}
|
||||||
{createInput('phone', 'Номер телефона',false)}
|
{createInput('phone', 'Номер телефона',false)}
|
||||||
<Form.Item
|
<Form.Item
|
||||||
name="idCompany"
|
name="idCompany"
|
||||||
|
Loading…
Reference in New Issue
Block a user