@salesforcedevs/dx-components 0.10.1-alpha.136 → 0.10.1-alpha.137
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
|
@@ -37,14 +37,14 @@ export default class SidebarSearch extends LightningElement {
|
|
|
37
37
|
return this._coveoAdvancedQueryConfig;
|
|
38
38
|
}
|
|
39
39
|
set coveoAdvancedQueryConfig(value: string) {
|
|
40
|
+
console.log({ value }, typeof value);
|
|
40
41
|
const hasChanged =
|
|
41
42
|
this._coveoAdvancedQueryConfigValue &&
|
|
42
43
|
value !== this._coveoAdvancedQueryConfigValue;
|
|
44
|
+
console.log({ hasChanged }, this._coveoAdvancedQueryConfigValue, value);
|
|
43
45
|
this._coveoAdvancedQueryConfig = toJson(value);
|
|
44
46
|
this._coveoAdvancedQueryConfigValue = value;
|
|
45
47
|
|
|
46
|
-
console.log({ hasChanged }, this._coveoAdvancedQueryConfigValue, value);
|
|
47
|
-
|
|
48
48
|
if (hasChanged && this.engine) {
|
|
49
49
|
// set adnvanced filters needs access to the latest coveoAdvancedQueryConfig
|
|
50
50
|
this.dispatchOnLoading(true);
|