Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 6880 Rev 6881
Línea 298... Línea 298...
298
            </div>
298
            </div>
299
          </div>
299
          </div>
300
          <label htmlFor="is_current"> Trabajo Actual</label>
300
          <label htmlFor="is_current"> Trabajo Actual</label>
301
          <div className="form-group">
301
          <div className="form-group">
302
            <SwitchInput
302
            <SwitchInput
303
              isChecked={Boolean(watch('is_current'))}
303
              isChecked={watch('is_current' === 'y')}
304
              setValue={(val) => setValue('is_current', val ? 'y' : 'n')}
304
              setValue={(val) => setValue('is_current', val ? 'y' : 'n')}
305
            />
305
            />
306
          </div>
306
          </div>
307
          {!watch('is_current') && (
307
          {!watch('is_current') && (
308
            <div className="row profile-year">
308
            <div className="row profile-year">
309
              <div className="input-c p-0">
309
              <div className="input-c p-0">
310
                <div className="form-group">
310
                <div className="form-group">
311
                  <select
311
                  <select
312
                    name="to_month"
312
                    name="to_month"
313
                    id="to_month"
313
                    id="to_month"
314
                    ref={register({
314
                    ref={register}
315
                      required: 'este campo es requerido',
-
 
316
                    })}
-
 
317
                    defaultValue=""
315
                    defaultValue=""
318
                  >
316
                  >
319
                    <option value="">Mes hasta</option>
317
                    <option value="">Mes hasta</option>
320
                    {getMonths().map((month, id) => (
318
                    {getMonths().map((month, id) => (
321
                      <option key={id} value={id + 1}>
319
                      <option key={id} value={id + 1}>
Línea 333... Línea 331...
333
              <div className="input-c p-0">
331
              <div className="input-c p-0">
334
                <div className="form-group">
332
                <div className="form-group">
335
                  <select
333
                  <select
336
                    name="to_year"
334
                    name="to_year"
337
                    id="to_year"
335
                    id="to_year"
338
                    ref={register({
336
                    ref={register}
339
                      required: 'este campo es requerido',
-
 
340
                    })}
-
 
341
                    defaultValue=""
337
                    defaultValue=""
342
                  >
338
                  >
343
                    <option value="">Año hasta</option>
339
                    <option value="">Año hasta</option>
344
                    {getYears().map((year) => (
340
                    {getYears().map((year) => (
345
                      <option key={year} value={year}>
341
                      <option key={year} value={year}>