We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0813cd commit d0848d8Copy full SHA for d0848d8
lib/mixins/element-mixin.js
@@ -304,7 +304,8 @@ export const ElementMixin = dedupingMixin(base => {
304
// potentially not shareable and sharing the ones that could be shared
305
// would require some coordination. To keep it simple, all the includes
306
// and styles are collapsed into a single shareable stylesheet.
307
- if (shareBuiltCSSWithAdoptedStyleSheets && builtCSS && supportsAdoptingStyleSheets) {
+ if (shareBuiltCSSWithAdoptedStyleSheets && builtCSS &&
308
+ supportsAdoptingStyleSheets) {
309
// Remove styles in template and make a shareable stylesheet
310
const styles = template.content.querySelectorAll('style');
311
if (styles) {
0 commit comments