@salesforcedevs/dx-components 0.10.1-alpha.108 → 0.10.1-alpha.109
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -130,6 +130,8 @@ export default class SidebarSearch extends LightningElement {
|
|
|
130
130
|
preloadedState: this.preloadedState
|
|
131
131
|
});
|
|
132
132
|
|
|
133
|
+
console.log('initialized engine directly after engine build', this.engine);
|
|
134
|
+
|
|
133
135
|
if (!this.engine) {
|
|
134
136
|
return;
|
|
135
137
|
}
|
|
@@ -152,13 +154,13 @@ export default class SidebarSearch extends LightningElement {
|
|
|
152
154
|
|
|
153
155
|
this.resultList?.subscribe(this.onResultListChange);
|
|
154
156
|
|
|
155
|
-
console.log('initialized engine', this.engine);
|
|
156
|
-
|
|
157
157
|
if (this.preloadedState) {
|
|
158
158
|
console.log("updating search box", this.value);
|
|
159
159
|
this.searchBox.updateText(this.value || "");
|
|
160
160
|
}
|
|
161
161
|
|
|
162
|
+
console.log('initialized engine after sub classes created', this.engine);
|
|
163
|
+
|
|
162
164
|
if (!this.isValueEmpty) {
|
|
163
165
|
this.dispatchHighlightedTermChange();
|
|
164
166
|
}
|