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 83729e3 commit d1e940dCopy full SHA for d1e940d
packages/components/bolt-blockquote/src/blockquote.js
@@ -73,21 +73,6 @@ class BoltBlockquote extends withLitHtml() {
73
}
74
75
76
- rendered() {
77
- super.rendered(); // ensure any events emitted by the Bolt Base class fire as expected
78
-
79
- // re-render if Shadow DOM is supported and enabled; temp workaround to dealing w/ components already rendered, but without slot support
80
- if (hasNativeShadowDomSupport && this.useShadow) {
81
- this.observer = watchForComponentMutations(this);
82
83
- this.observer.observe(this, {
84
- attributes: false,
85
- childList: true,
86
- characterData: false,
87
- });
88
- }
89
90
91
disconnecting() {
92
// this.removeEventListener('click', this.clickHandler);
93
0 commit comments