fix: Stop rendering of dashboard from breaking UI

This commit is contained in:
2024-02-07 17:27:43 +11:00
parent a0989cccef
commit bfbac3a679
2 changed files with 2 additions and 6 deletions

View File

@@ -301,9 +301,5 @@ def plugin_output_dash(outputs, returns):
html = ''
for returnOutput in returns:
html += render_template('components/dashboard-plugin.html', name=returns[returnOutput]["name"], output=outputs[returnOutput])
html += f'</div>'
html += f'</div>'
html += render_template('components/dashboard-plugin.html', name=returns[returnOutput]["name"], output=outputs[returnOutput])
return html