From d53a84ce8572ecb7a11c207062e32052d459f241 Mon Sep 17 00:00:00 2001 From: Keith Solomon Date: Sun, 26 Jul 2026 03:58:03 -0500 Subject: [PATCH] fix: enable action-mode buttons in match view (final-review Critical) --- public/js/match.js | 1 + src/Views/match.php | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/public/js/match.js b/public/js/match.js index dca5edc..3ef2b79 100644 --- a/public/js/match.js +++ b/public/js/match.js @@ -266,6 +266,7 @@ function setMode(mode) { if (btn) { if (m === mode) btn.classList.add('bf-action--active'); else btn.classList.remove('bf-action--active'); + btn.removeAttribute('disabled'); } }); renderAbilityOptions(); diff --git a/src/Views/match.php b/src/Views/match.php index dcd7859..f7a4fda 100644 --- a/src/Views/match.php +++ b/src/Views/match.php @@ -24,9 +24,9 @@ render_layout(static function (): void {