Commit 0bce3d76 authored by Sven Franck's avatar Sven Franck

fix: missing uri-encoding on controlgroup links

parent b37cc066
......@@ -4237,7 +4237,10 @@
if (spec.item_identifier) {
if (element.direct.href) {
element.direct.href =
element.direct.href.replace("__id__", spec.item_identifier);
element.direct.href.replace(
"__id__",
window.encodeURIComponent(spec.item_identifier)
);
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment