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.
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.