Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 1146 Rev 1151
Línea 11... Línea 11...
11
 
11
 
12
const topicsReducer = (state = initialState, { type, payload }) => {
12
const topicsReducer = (state = initialState, { type, payload }) => {
13
  switch (type) {
13
  switch (type) {
14
    case TOPIC_ACTIONS.ADD_TOPIC: {
14
    case TOPIC_ACTIONS.ADD_TOPIC: {
15
      const topic = payload
-
 
16
 
15
      const topic = payload
Línea 17... Línea 16...
17
      const topicsIds = new Set([...state.topicsAllIds, topic.uuid])
16
      const topicsIds = new Set([...state.topicsAllIds, topic.uuid])
18
 
17
 
19
      return {
18
      return {