We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ec4ba9 commit 66d71dbCopy full SHA for 66d71db
1 file changed
debug_toolbar/api.py
@@ -18,7 +18,6 @@ def render_panel(request: Request, store_id: str, panel_id: str) -> t.Any:
18
scripts = []
19
else:
20
panel = toolbar.get_panel_by_id(panel_id)
21
- content = panel.content
22
- scripts = panel.scripts
+ content, scripts = panel.content, panel.scripts
23
24
return {"content": content, "scripts": scripts}
0 commit comments