This commit is contained in:
Bruno Rybársky 2024-04-26 01:19:58 +02:00
parent a0d371ec04
commit 7f1311a254

@ -106,7 +106,7 @@ async function displayList(data, elementId, deleteFunction) {
if ("function" === typeof deleteFunction) { if ("function" === typeof deleteFunction) {
const th = document.createElement("th"); const th = document.createElement("th");
th.appendChild(document.createNode("<i class='ri-delete-bin-line'></i>")); th.appendChild(document.createElement("<i class='ri-delete-bin-line'></i>"));
headerRow.appendChild(th); headerRow.appendChild(th);
} }