This commit is contained in:
Naiel
2025-05-29 14:47:49 +02:00
committed by GitHub
parent 17bc496d2d
commit 337fc6a562

View File

@@ -1464,7 +1464,7 @@
container.innerHTML = ` container.innerHTML = `
<h1>Materiales</h1> <h1>Materiales</h1>
<button id="${btn_new}">Nuevo Material</button> <button id="${btn_new}">Nuevo Material</button>
<table id="scrolltable"> <div id="scrolltable"><table>
<thead> <thead>
<tr> <tr>
<th>Referencia</th> <th>Referencia</th>
@@ -1476,7 +1476,7 @@
</thead> </thead>
<tbody id="${tablebody}"> <tbody id="${tablebody}">
</tbody> </tbody>
</table> </table></div>
`; `;
tableScroll("#scrolltable") tableScroll("#scrolltable")
var tablebody_EL = document.getElementById(tablebody); var tablebody_EL = document.getElementById(tablebody);
@@ -1831,7 +1831,7 @@
container.innerHTML = ` container.innerHTML = `
<h1>Personas</h1> <h1>Personas</h1>
<button id="${btn_new}">Nueva Persona</button> <button id="${btn_new}">Nueva Persona</button>
<table id="scrolltable"> <div id="scrolltable"><table>
<thead> <thead>
<tr> <tr>
<th>Nombre</th> <th>Nombre</th>
@@ -1842,7 +1842,7 @@
</thead> </thead>
<tbody id="${tablebody}"> <tbody id="${tablebody}">
</tbody> </tbody>
</table> </table></div>
`; `;
tableScroll("#scrolltable") // id="scrolltable" tableScroll("#scrolltable") // id="scrolltable"
var tablebody_EL = document.getElementById(tablebody); var tablebody_EL = document.getElementById(tablebody);
@@ -2074,7 +2074,7 @@
container.innerHTML = ` container.innerHTML = `
<h1>SuperCafé</h1> <h1>SuperCafé</h1>
<button id="${btn_new}">Nueva comanda</button> <button id="${btn_new}">Nueva comanda</button>
<table id="scrolltable"> <div id="scrolltable"><table>
<thead> <thead>
<tr> <tr>
<th>Zona</th> <th>Zona</th>
@@ -2086,7 +2086,7 @@
</thead> </thead>
<tbody id="${tablebody}"> <tbody id="${tablebody}">
</tbody> </tbody>
</table> </table></div>
`; `;
tableScroll("#scrolltable") // id="scrolltable" tableScroll("#scrolltable") // id="scrolltable"
@@ -2451,7 +2451,7 @@
container.innerHTML = ` container.innerHTML = `
<h1>Notificaciones</h1> <h1>Notificaciones</h1>
<button id="${btn_new}">Nueva notificación</button> <button id="${btn_new}">Nueva notificación</button>
<table id="scrolltable"> <div id="scrolltable"><table>
<thead> <thead>
<tr> <tr>
<th>Fecha</th> <th>Fecha</th>
@@ -2462,7 +2462,7 @@
</thead> </thead>
<tbody id="${tablebody}"> <tbody id="${tablebody}">
</tbody> </tbody>
</table> </table></div>
`; `;
tableScroll("#scrolltable") // id="scrolltable" tableScroll("#scrolltable") // id="scrolltable"
var tablebody_EL = document.getElementById(tablebody); var tablebody_EL = document.getElementById(tablebody);