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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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 = "";