Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 9874 Rev 10114
Línea 91... Línea 91...
91
 
91
 
92
  useEffect(() => {
92
  useEffect(() => {
93
    if (action === "edit") {
93
    if (action === "edit") {
94
      axios.get(actionLink)
94
      axios.get(actionLink)
-
 
95
        .then(({ data }) => {
-
 
96
          const respData = data.data
95
        .then(({ data }) => {
97
 
96
          if (data.success) {
98
          if (data.success) {
97
            setValue("name", data.data.name)
99
            setValue("name", respData.name)
98
            setValue("description", data.data.description)
100
            setValue("description", respData.description)
99
            setLocationLabel(data.data.formatted_address)
101
            setLocationLabel(respData.formatted_address)
100
            setYear(data.data.last_date)
102
            setYear(respData.last_date)
-
 
103
            respData.status === "a" ? setIsActive(true) : setIsActive(false)
-
 
104
 
-
 
105
            Object.entries(respData.job_category.job_category_options).map(([value, label]) => {
-
 
106
              setJobsCategory(prev => [...prev, { value: value, label: label }])
101
            data.data.status === "a" ? setIsActive(true) : setIsActive(false)
107
            })
102
          }
108
          }
103
        })
109
        })
104
    }
110
    }