Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 3239 Rev 3242
Línea 80... Línea 80...
80
    notification_10min_before,
80
    notification_10min_before,
81
    notification_30min_before,
81
    notification_30min_before,
82
    ...habit
82
    ...habit
83
  }) => {
83
  }) => {
84
    onSubmit({
84
    onSubmit({
85
      monday_active: monday_active ? '1' : '0',
85
      monday_active: monday_active ? 1 : 0,
86
      tuesday_active: tuesday_active ? '1' : '0',
86
      tuesday_active: tuesday_active ? 1 : 0,
87
      wednesday_active: wednesday_active ? '1' : '0',
87
      wednesday_active: wednesday_active ? 1 : 0,
88
      thursday_active: thursday_active ? '1' : '0',
88
      thursday_active: thursday_active ? 1 : 0,
89
      friday_active: friday_active ? '1' : '0',
89
      friday_active: friday_active ? 1 : 0,
90
      saturday_active: saturday_active ? '1' : '0',
90
      saturday_active: saturday_active ? 1 : 0,
91
      sunday_active: sunday_active ? '1' : '0',
91
      sunday_active: sunday_active ? 1 : 0,
92
      notification_10min_before: notification_10min_before ? '1' : '0',
92
      notification_10min_before: notification_10min_before ? 1 : 0,
93
      notification_30min_before: notification_30min_before ? '1' : '0',
93
      notification_30min_before: notification_30min_before ? 1 : 0,
94
      ...habit
94
      ...habit
95
    })
95
    })
96
  }
96
  }
Línea 97... Línea 97...
97
 
97