Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 496 Rev 526
Línea 96... Línea 96...
96
        }
96
        }
Línea 97... Línea 97...
97
 
97
 
98
        if (fetchCallback) fetchCallback()
98
        if (fetchCallback) fetchCallback()
99
        dispatch(addNotification({ style: 'success', msg: data }))
99
        dispatch(addNotification({ style: 'success', msg: data }))
100
      })
100
      })
101
      .catch((err) => {
101
      .catch(() => {
102
        dispatch(
102
        dispatch(
103
          addNotification({
103
          addNotification({
104
            style: 'error',
104
            style: 'error',
105
            msg: 'Error interno. Por favor, inténtelo de nuevo más tarde.',
105
            msg: 'Error interno. Por favor, inténtelo de nuevo más tarde.',
106
          })
106
          })
107
        )
-
 
108
        throw new Error(err)
107
        )
109
      })
108
      })
110
      .finally(() => {
109
      .finally(() => {
111
        confirmUrl.current = ''
110
        confirmUrl.current = ''
112
        setLoading(false)
111
        setLoading(false)
Línea 185... Línea 184...
185
 
184
 
186
          {isTopData && email && <h4>{email}</h4>}
185
          {isTopData && email && <h4>{email}</h4>}
187
          {network && <h4>{network}</h4>}
186
          {network && <h4>{network}</h4>}
188
          {status && <h4>{status}</h4>}
187
          {status && <h4>{status}</h4>}
189
          {isTopData && (
188
          {isTopData && (
190
            <ul className="my-5">
189
            <ul>
191
              {link_view && (
190
              {link_view && (
192
                <li>
191
                <li>
193
                  <Link
192
                  <Link
194
                    to={link_view}
193
                    to={link_view}
Línea 213... Línea 212...
213
            </ul>
212
            </ul>
214
          )}
213
          )}
215
        </div>
214
        </div>
216
      </div>
215
      </div>
Línea 217... Línea 216...
217
 
216
 
218
      <ul className="position-relative mt-1">
217
      <ul className="position-relative">
219
        {linksOptions.map((option) => {
218
        {linksOptions.map((option) => {
Línea 220... Línea 219...
220
          const breakOptions = [link_view, link_edit, link_inmail]
219
          const breakOptions = [link_view, link_edit, link_inmail]
221
 
220