We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58d9090 commit b5f2aceCopy full SHA for b5f2ace
container/bmclapi_dashboard/static/js/index.js
@@ -204,9 +204,15 @@ const calc_more_bytes = (...values) => {
204
}
205
},
206
"dashboard": {
207
+ "disconnect": () => {
208
+ if ("dashboard" in core_modules_locals) {
209
+ clearInterval(core_modules_locals["dashboard"]["timer"])
210
+ delete core_modules_locals["dashboard"]
211
+ }
212
+ },
213
"connect": () => {
214
if (!("dashboard" in core_modules_locals)) {
- core_modules_locals["dashboard"] = {
215
+ c = {
216
"refresh": () => {
217
axios.get("/dashboard").then(resp => {
218
if (resp.status != 200) return
0 commit comments