Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 12329 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 12329 Rev 14843
Línea 30... Línea 30...
30
		})
30
		})
Línea 31... Línea 31...
31
 
31
 
32
		axios.post(action_link, submitData)
32
		axios.post(action_link, submitData)
33
			.then(({ data }) => {
33
			.then(({ data }) => {
-
 
34
				if (!data.success) {
-
 
35
					typeof data.data === 'string'
34
				if (!data.success) {
36
						?
35
					return dispatch(addNotification({
37
						dispatch(addNotification({
36
						style: 'danger',
38
							style: 'danger',
-
 
39
							msg: data.data
-
 
40
						}))
37
						msg: typeof data.data === 'string'
41
						: Object.entries(data.data).map(([key, value]) =>
-
 
42
							value.map(err =>
-
 
43
								dispatch(addNotification({
38
							? data.data
44
									style: 'danger',
-
 
45
									msg: `${key}: ${err}`
39
							: 'Ha ocurrido un error'
46
								}))
-
 
47
							)
-
 
48
						)
40
					}))
49
					return
Línea 41... Línea 50...
41
				}
50
				}
42
 
51
 
43
				clearErrors()
52
				clearErrors()