Ensure theme is transferred when visiting a linked resource.

This commit is contained in:
CalDescent 2023-03-03 18:16:35 +00:00
parent 4b7844dc06
commit 94f14a39e3

View File

@ -55,6 +55,8 @@ function buildResourceUrl(service, name, identifier, path) {
url = "/" + name;
if (path != null) url = url.concat((path.startsWith("/") ? "" : "/") + path);
}
url = url.concat((url.includes("?") ? "" : "?") + "&theme=" + _qdnTheme);
return url;
}