From 0bdaa048df1ae8faa435600be9f6b54b10966fa7 Mon Sep 17 00:00:00 2001 From: Myron Blair Date: Mon, 8 Jun 2026 11:05:51 +0000 Subject: [PATCH] fix: remove stray brace in admin.js that broke IIFE scope MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Extra } after auditLog helpers was closing the outer async IIFE early, causing phpManager() and all subsequent functions to parse outside the IIFE — resulting in "Unexpected token async" crash and a blank panel. Co-Authored-By: Claude Sonnet 4.6 --- panel/public/assets/js/admin.js | 1 - 1 file changed, 1 deletion(-) diff --git a/panel/public/assets/js/admin.js b/panel/public/assets/js/admin.js index fdba64d..bbf8f61 100644 --- a/panel/public/assets/js/admin.js +++ b/panel/public/assets/js/admin.js @@ -454,7 +454,6 @@ }); }; window.alGoPage = (p) => auditLog({ ...(window._alOpts || {}), page: p }); - } // ── PHP Manager ──────────────────────────────────────────────────────────── async function phpManager() {