You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a value contains a plus, ie. Foo + Bar or 60+ and you click that bar, the filtering of the other charts doesn't work because the URL passed to carto encodes everything except the plus, ie. age_range%20=%20%2760+%27. Carto then interprets the + as a space.
I think the issue is with how jQuery's .ajax() function encodes the URI of the querystring. I think it's limited to + but this may affect other URL-reserved characters as well.
The text was updated successfully, but these errors were encountered:
When a value contains a plus, ie.
Foo + Bar
or60+
and you click that bar, the filtering of the other charts doesn't work because the URL passed to carto encodes everything except the plus, ie.age_range%20=%20%2760+%27
. Carto then interprets the+
as a space.I think the issue is with how jQuery's
.ajax()
function encodes the URI of the querystring. I think it's limited to+
but this may affect other URL-reserved characters as well.The text was updated successfully, but these errors were encountered: