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 5a29842 commit 887a302Copy full SHA for 887a302
VERSION
@@ -1 +1 @@
1
-3.0.11
+3.0.12
core/dashboard.py
@@ -125,13 +125,14 @@ async def _(request: web.Request):
125
126
@route.get("/assets/js/config.js")
127
async def _(request: web.Request):
128
- content = f'window.__CONFIG__ = {json.dumps({
+ dashboard_config = json.dumps({
129
"version": config.VERSION,
130
"support": {
131
"websocket": True,
132
"polling": True
133
},
134
- })}'
+ })
135
+ content = f'window.__CONFIG__ = {dashboard_config}'
136
return web.Response(
137
body=content,
138
content_type="application/javascript"
0 commit comments