-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
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
Not working with url_base_pathname set in dash.Dash() #15
Comments
From devtools, it can be seen that there is a HTTP request with Status Code The request URL is
without the
The only difference seems to be the beginning. The server does not handle POST requests pointed to |
Looking from the
Now I have to think how to fix this without breaking the functionality with
If I try to set the
also
which means that all possible combinations are either Case 1routes_pathname_prefix = /foo/
requests_pathname_prefix= /foo/ or Case 2routes_pathname_prefix = /foo/
requests_pathname_prefix= /bar/foo/ where both |
Fixed in 42ee6f7 (dash-uploader v. 0.4.0) |
Description
The dash uploader component does not work (i.e. upload does not start) if
url_base_pathname
is set when initializing thedash.Dash()
.MWE
Versions
dash-uploader version: 0.3.1
dash: 1.14.0
The text was updated successfully, but these errors were encountered: