Placeholder for add button to make sure it works

This commit is contained in:
Herbert Wolverson
2024-06-22 11:31:42 -05:00
parent 3a9fa6ab21
commit 5b806451ea

View File

@@ -173,6 +173,9 @@ export class Dashboard {
addItem.type = "button";
addItem.classList.add("btn", "btn-success");
addItem.innerText = "Add to Dashboard";
addItem.onclick = () => {
alert("not implemented yet");
};
content.appendChild(addItem);
this.parentDiv.appendChild(darken);