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 7fa6c3a commit 2f99760Copy full SHA for 2f99760
home_page.js
@@ -166,8 +166,6 @@ class HomePage extends HTMLElement {
166
this.attachShadow({ mode: 'open' });
167
this.shadowRoot.appendChild(homePageTemplate.content.cloneNode(true));
168
this.initDOMElements();
169
-
170
- this.currentAlignmentUrl = null;
171
}
172
173
initDOMElements() {
@@ -233,8 +231,7 @@ class HomePage extends HTMLElement {
233
231
234
232
// Navigate to the main content page with the URLs
235
navigateToMainContent(url1, url2) {
236
- if (url1 !== this.currentAlignmentUrl) {
237
- this.currentAlignmentUrl = url1;
+ if (url1 !== this.broker.alignmentUrl) {
238
// reset the state
239
this.broker.reset();
240
0 commit comments