Merge branch 'benito' of https://git.gumoio.com/benito.rodriguez/SIDAC into roberto
This commit is contained in:
commit
b57e880456
diplomas/src
|
@ -52,6 +52,15 @@ const data = {
|
|||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Competencias",
|
||||
items: [
|
||||
{
|
||||
title: "Vista de competencias",
|
||||
url: "/competenciasVista",
|
||||
}
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Diplomas",
|
||||
items: [
|
||||
|
@ -61,6 +70,7 @@ const data = {
|
|||
},
|
||||
],
|
||||
},
|
||||
|
||||
],
|
||||
};
|
||||
|
||||
|
|
|
@ -105,7 +105,6 @@ export default function CursosVista() {
|
|||
<table className="min-w-full bg-white border">
|
||||
<thead>
|
||||
<tr className="bg-gray-100">
|
||||
<th className="py-2 border-b">ID</th>
|
||||
<th className="py-2 border-b">Nombre</th>
|
||||
<th className="py-2 border-b">Descripción</th>
|
||||
<th className="py-2 border-b">Horas</th>
|
||||
|
@ -164,7 +163,6 @@ export default function CursosVista() {
|
|||
</tr>
|
||||
) : (
|
||||
<tr key={curso.id}>
|
||||
<td className="py-2 px-4 border-b">{curso.id}</td>
|
||||
<td className="py-2 px-4 border-b">{curso.nombre}</td>
|
||||
<td className="py-2 px-4 border-b">{curso.descripcion}</td>
|
||||
<td className="py-2 px-4 border-b">{curso.horas}</td>
|
||||
|
|
Loading…
Reference in New Issue