Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 14199 | Rev 14253 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 14199 Rev 14201
Línea 65... Línea 65...
65
 
65
 
66
	const getImport = () => {
66
	const getImport = () => {
67
		axios.post(import_link)
67
		axios.post(import_link)
68
			.then(({ data }) => {
68
			.then(({ data }) => {
69
				if (!data.success) {
69
				if (!data.success) {
70
					dispatch(addNotification({
70
					return dispatch(addNotification({
71
						style: 'danger',
71
						style: 'danger',
72
						msg: data.data
72
						msg: data.data
73
					}))
73
					}))
-
 
74
				}
-
 
75
 
-
 
76
				dispatch(addNotification({
-
 
77
					style: 'success',
-
 
78
					msg: data.data
74
				}
79
				}))
75
			})
80
			})
Línea 76... Línea 81...
76
	}
81
	}
77
 
82