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();