We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe your context
dash==2.6.0
Describe the bug
First request made to a multi-page app fails. Refreshing the page resolves the issue.
Expected behaviour
First request should work.
Demo
Code
import dash from dash import Dash, html app = Dash(__name__, use_pages=True, pages_folder='') app.layout = dash.page_container layout = html.Div(children=[ html.H1(children='Hello Dash'), ]) dash.register_page("index", layout=layout, path="/", title="Index") if __name__ == "__main__": app.run(host='0.0.0.0', debug=True)
The text was updated successfully, but these errors were encountered:
I believe this is a known bug that was introduced by #2126 There's an open PR to revert the change that introduced the regression: #2168
Sorry, something went wrong.
Thanks @ned2!
No branches or pull requests
Describe your context
Describe the bug
First request made to a multi-page app fails. Refreshing the page resolves the issue.
Expected behaviour
First request should work.
Demo
dash_error.mp4
Code
The text was updated successfully, but these errors were encountered: