@salesforcedevs/dx-components 0.10.1-alpha.112 → 0.10.1-alpha.113
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
|
@@ -132,7 +132,7 @@ export default class SidebarSearch extends LightningElement {
|
|
|
132
132
|
|
|
133
133
|
console.log(
|
|
134
134
|
"initialized engine directly after engine build",
|
|
135
|
-
this.engine
|
|
135
|
+
this.engine?.state?.query?.q
|
|
136
136
|
);
|
|
137
137
|
|
|
138
138
|
if (this.preloadedState) {
|
|
@@ -143,7 +143,7 @@ export default class SidebarSearch extends LightningElement {
|
|
|
143
143
|
console.log(
|
|
144
144
|
"initialized engine directly after query dispatch",
|
|
145
145
|
this.engine,
|
|
146
|
-
this.engine
|
|
146
|
+
this.engine?.state?.query?.q
|
|
147
147
|
);
|
|
148
148
|
|
|
149
149
|
if (!this.engine) {
|