Added Card organization, refresh button, and started on 'Minter Data Board' that will include encryption and ability to publish card data for other minters. More work required to finish it.

This commit is contained in:
2024-12-16 19:53:37 -08:00
parent 9406c396bf
commit d7bd413c31
8 changed files with 729 additions and 81 deletions

View File

@@ -13,7 +13,7 @@ document.addEventListener('DOMContentLoaded', async () => {
console.log(`User is an Admin, buttons for MA Tools not removed. userState.isAdmin = ${userState.isMinterAdmin}`);
} else {
// Remove all "TOOLS" links and their related elements
const toolsLinks = document.querySelectorAll('a[href="TOOLS"]');
const toolsLinks = document.querySelectorAll('a[href="TOOLS"], a[href="MINTER-BOARD"], a[href="MINTERS"]');
toolsLinks.forEach(link => {
// If the link is within a button, remove the button
const buttonParent = link.closest('button');