BSd3v

Results 68 comments of BSd3v
trafficstars

Not that I can find. I've seen it come up a couple times on the forums.

What happens in your tests when you pass `foo.bar.test` in the url? In flask, you get: ![image](https://user-images.githubusercontent.com/82055130/223472070-cd3aef77-4dce-48d1-8f78-5ebc26da638e.png) ``` @app.route('/testing/.', methods=['GET']) def testing(foo, bar): return jsonify([foo, bar]) ``` It looks like...

I'm wondering if switching to `werkzeug` might also help with parsing variables that have been url encoded as well. Right now, `this is a test` -> `this%20is%20a%20test` in the variable...

Hey @Spriteware, Just curious, is this still an issue with Dash 3?

@T4rk1n Would it be possible to compute these graphs on the server and pass them to the front-end so that it saves the resources on the client?

I was just thinking at build time and bundled, as it has to loop through all callbacks for the registry anyways.

Still, could this be something that is offloaded to the server as: - the server should know all possible combinations - this could help with initial load time across the...