From 793b8b4a7d912e056653d5c05004624ebda83b6e Mon Sep 17 00:00:00 2001 From: Finley Ghosh Date: Sun, 7 Dec 2025 17:51:08 +1100 Subject: [PATCH] fixing disable future error --- go/templates/quotes/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/templates/quotes/index.html b/go/templates/quotes/index.html index ee8b93ce..fc2bb726 100644 --- a/go/templates/quotes/index.html +++ b/go/templates/quotes/index.html @@ -345,7 +345,7 @@ function showDisableModal(quoteID, enquiryRef) { document.getElementById('disableModal').classList.remove('hidden'); // Close any open dropdowns - document.querySelectorAll('form > div.absolute').forEach(d => d.classList.add('hidden')); + document.querySelectorAll('div.absolute.right-0').forEach(d => d.classList.add('hidden')); } function hideDisableModal() {