Commit b7177b73 by Joel Florentin

Merge branch 'nelson' of https://phoebe.roshka.com/gitlab/hshah/TalentoHumano into joel-001

parents 56937330 6eec4fd0
...@@ -69,12 +69,6 @@ public class Experiencia { ...@@ -69,12 +69,6 @@ public class Experiencia {
public void setInstitucion(String institucion) { public void setInstitucion(String institucion) {
this.institucion = institucion; this.institucion = institucion;
} }
public Date getFechaDesde() {
return fechaDesde;
}
public void setFechaDesde(Date fechaDesde) {
this.fechaDesde = fechaDesde;
}
public void setFechaDesde(String fechaDesde) { public void setFechaDesde(String fechaDesde) {
this.fechaDesde = Helper.convertirFecha(fechaDesde); this.fechaDesde = Helper.convertirFecha(fechaDesde);
} }
......
...@@ -72,7 +72,7 @@ function agregarFieldExpierncia(event){ ...@@ -72,7 +72,7 @@ function agregarFieldExpierncia(event){
content += ` content += `
<li id="exp-${index}"> <li id="exp-${index}">
${exp.institucion} ${exp.institucion}
<button type="button" onclick="eliminarExperiencia(event)">Eliminar</button> <button type="button" onclick="eliminarExperiencia(event)"> <span class="glyphicon glyphicon-trash"></span> Tras</button>
</li> </li>
` `
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment