Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 963 Rev 1199
Línea 201... Línea 201...
201
              onAdd={handleAdd}
201
              onAdd={handleAdd}
202
              addUrl={`/profile/my-profiles/education/${profile?.user_profile_uuid}/operation/add`}
202
              addUrl={`/profile/my-profiles/education/${profile?.user_profile_uuid}/operation/add`}
203
            >
203
            >
204
              {educations.length ? (
204
              {educations.length ? (
205
                educations.map((education, index) => (
205
                educations.map((education, index) => (
-
 
206
                  <EducationCard
-
 
207
                    key={index}
-
 
208
                    isEdit={isEdit}
-
 
209
                    onEdit={handleEdit}
206
                  <EducationCard key={index} education={education} />
210
                    education={education}
-
 
211
                  />
207
                ))
212
                ))
208
              ) : (
213
              ) : (
209
                <EmptySection align='left' message={labels.empty} />
214
                <EmptySection align='left' message={labels.empty} />
210
              )}
215
              )}
211
            </ProfileWidget>
216
            </ProfileWidget>