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 e214ff7 commit 9f3bd31Copy full SHA for 9f3bd31
packages/components/bolt-navlink/navlink.js
@@ -133,6 +133,7 @@ class BoltNavLink extends withLitHtml() {
133
}
134
135
connecting() {
136
+ super.connecting && super.connecting();
137
this.addEventListener('click', this.onClick);
138
139
this._shadowLink = this.querySelector('a');
@@ -149,6 +150,7 @@ class BoltNavLink extends withLitHtml() {
149
150
151
152
disconnecting() {
153
+ super.disconnecting && super.disconnecting();
154
this.removeEventListener('click', this.onClick);
155
156
0 commit comments