Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 1645 Rev 1647
Línea 14... Línea 14...
14
    case actionsTypes.CLOSE_MODAL: {
14
    case actionsTypes.CLOSE_MODAL: {
15
      return { ...state, ...reportState }
15
      return { ...state, ...reportState }
16
    }
16
    }
Línea 17... Línea 17...
17
 
17
 
18
    case actionsTypes.SHOW_MODAL: {
18
    case actionsTypes.SHOW_MODAL: {
Línea 19... Línea 19...
19
      console.log('On reducer')
19
      const { type, reportUrl, onComplete } = payload
20
 
20
 
21
      return {
21
      return {
22
        ...state,
22
        ...state,
23
        showModal: true,
23
        type,
24
        type: payload?.type,
24
        reportUrl,
25
        reportUrl: payload?.reportUrl,
25
        onComplete,
26
        onComplete: payload?.onComplete
26
        showModal: true
Línea 27... Línea 27...
27
      }
27
      }
28
    }
28
    }