1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-05 23:10:41 +03:00

null-guard dataset mxTheme to prevent html exports from exploding (#7493)

This commit is contained in:
Michael Telatynski
2022-01-10 11:34:56 +00:00
committed by GitHub
parent 31ab91359a
commit f7d19a5746

View File

@@ -40,7 +40,7 @@ const getExportCSS = async (usedClasses: Set<string>): Promise<string> => {
// only include bundle.css and the data-mx-theme=light styling
const stylesheets = Array.from(document.styleSheets).filter(s => {
return s.href?.endsWith("bundle.css") ||
(s.ownerNode as HTMLStyleElement).dataset.mxTheme.toLowerCase() === "light";
(s.ownerNode as HTMLStyleElement).dataset.mxTheme?.toLowerCase() === "light";
});
let css = "";