X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/714e665e783490e3710a772bc54c2c062965e812..d4489afef9924986e7a04201602f2b810ddfa9d2:/src/common/xml.ts diff --git a/src/common/xml.ts b/src/common/xml.ts index c810de95..098f2781 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); };