From 29e7b2be410a54dcbff3d76bab1a17ed8058f6ab Mon Sep 17 00:00:00 2001 From: qinglong Date: Sun, 14 Jun 2026 10:54:39 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=8F=92=E4=BB=B6=E9=A1=B5=E9=9D=A2?= =?UTF-8?q?=E5=8A=A0=E8=BD=BD=E5=8A=A0=20=3Ft=3D=20=E7=BC=93=E5=AD=98?= =?UTF-8?q?=E7=A0=B4=E5=9D=8F=20+=20app.js=20v0706?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- static/web_panel/home.html | 2 +- static/web_panel/js/app.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/static/web_panel/home.html b/static/web_panel/home.html index 8fca0e5..7d10e62 100644 --- a/static/web_panel/home.html +++ b/static/web_panel/home.html @@ -79,6 +79,6 @@ - + diff --git a/static/web_panel/js/app.js b/static/web_panel/js/app.js index 52adc68..08594cd 100644 --- a/static/web_panel/js/app.js +++ b/static/web_panel/js/app.js @@ -167,7 +167,7 @@ async function loadPluginPage(pluginName) { if(!_pluginPagesCache) await fetchPluginPages(); try { - var resp = await fetch('/plugin/'+pluginName, {credentials:'include'}); + var resp = await fetch('/plugin/'+pluginName+'?t='+Date.now(), {credentials:'include'}); if(!resp.ok) throw new Error(resp.status); var html = await resp.text();