From 29d5174dcb063f4f2674f374fa31404dccb228a7 Mon Sep 17 00:00:00 2001 From: CyberMind-FR Date: Fri, 9 Jan 2026 15:49:26 +0100 Subject: [PATCH] fix: Correct CDN Cache redirect URL in system-hub link Remove '/overview' from the redirect path to let the menu's firstchild action handle the navigation properly. Co-Authored-By: Claude Opus 4.5 --- .../luci-static/resources/view/system-hub/cdn-cache-link.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/secubox/luci-app-system-hub/htdocs/luci-static/resources/view/system-hub/cdn-cache-link.js b/package/secubox/luci-app-system-hub/htdocs/luci-static/resources/view/system-hub/cdn-cache-link.js index 2caf93e3..0ba803d9 100644 --- a/package/secubox/luci-app-system-hub/htdocs/luci-static/resources/view/system-hub/cdn-cache-link.js +++ b/package/secubox/luci-app-system-hub/htdocs/luci-static/resources/view/system-hub/cdn-cache-link.js @@ -3,7 +3,7 @@ return view.extend({ load: function() { - window.location.href = L.url('admin', 'secubox', 'network', 'cdn-cache', 'overview'); + window.location.href = L.url('admin', 'secubox', 'network', 'cdn-cache'); return Promise.resolve(); }, render: function() {