From 734071beabedf54ce2c8faf55124696dd685282d Mon Sep 17 00:00:00 2001 From: Kibi Kelburton Date: Mon, 26 Jan 2026 20:53:08 +0100 Subject: [PATCH] possible fix for tag deletion modal --- public/s/js/f0ck.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/public/s/js/f0ck.js b/public/s/js/f0ck.js index b612111..08c4cf1 100644 --- a/public/s/js/f0ck.js +++ b/public/s/js/f0ck.js @@ -622,8 +622,11 @@ window.requestAnimFrame = (function () { if (modal) { nameEl.textContent = tagName; + confirmBtn.textContent = 'Delete'; + confirmBtn.disabled = false; modal.style.display = 'flex'; + const closeModal = () => { modal.style.display = 'none'; confirmBtn.onclick = null;