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
Currently is not possible to create the location with url like this: 'news/edit/:groupCode',
where the groupCode contains special symbols like this: '!@#$%^&*test'. Thus, my URL looks like this: 'news/edit/!@#$%^&*test'.
I can manualy encode this url using the encodeURIComponent function, but your createLocation function uses decodeURI function. So, my changes will be incorrectly modified.
Is it possible to solve this problem in the nearest future?
The text was updated successfully, but these errors were encountered:
Currently is not possible to create the location with url like this: 'news/edit/:groupCode',
where the groupCode contains special symbols like this: '!@#$%^&*test'. Thus, my URL looks like this: 'news/edit/!@#$%^&*test'.
I can manualy encode this url using the encodeURIComponent function, but your createLocation function uses decodeURI function. So, my changes will be incorrectly modified.
Is it possible to solve this problem in the nearest future?
The text was updated successfully, but these errors were encountered: