[ARVADOS-WORKBENCH2] created: 1.2.0-697-g7407e4e
Git user
git at public.curoverse.com
Mon Oct 22 16:51:55 EDT 2018
at 7407e4e31f358e152ac2ec96e0ba964a42f54a99 (commit)
commit 7407e4e31f358e152ac2ec96e0ba964a42f54a99
Author: Daniel Kos <daniel.kos at contractors.roche.com>
Date: Mon Oct 22 22:50:35 2018 +0200
Fixed getting tag value (add percentages decoding)
Bug #14353
Arvados-DCO-1.1-Signed-off-by: Daniel Kos <daniel.kos at contractors.roche.com>
diff --git a/src/common/xml.ts b/src/common/xml.ts
index c810de9..098f278 100644
--- a/src/common/xml.ts
+++ b/src/common/xml.ts
@@ -4,5 +4,5 @@
export const getTagValue = (document: Document | Element, tagName: string, defaultValue: string) => {
const [el] = Array.from(document.getElementsByTagName(tagName));
- return el ? el.innerHTML : defaultValue;
+ return decodeURI(el ? el.innerHTML : defaultValue);
};
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list