fix(ui) - search url - value with spaces

This commit is contained in:
Shekar Siri 2023-03-31 15:28:48 +02:00
parent 25fb1323fa
commit b90eda7076

View file

@ -118,7 +118,7 @@ function getQueryObject(search: any) {
.split('&')
.map((item: any) => {
let [key, value] = item.split('=');
return { key: key.slice(0, -2), value };
return { key: key.slice(0, -2), value: decodeURI(value) };
});
return jsonArray;
}