@salesforcedevs/dx-components 0.19.3-alpha.24 → 0.19.3-alpha.25
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
|
@@ -341,13 +341,12 @@ export default class SidebarSearch extends LightningElement {
|
|
|
341
341
|
if (!termsToHighlight || !phrasesToHighlight) {
|
|
342
342
|
return;
|
|
343
343
|
}
|
|
344
|
-
console.log(termsToHighlight, Object.values(termsToHighlight))
|
|
345
344
|
const terms = new Set(
|
|
346
345
|
[
|
|
347
346
|
Object.values(termsToHighlight),
|
|
348
347
|
Object.values(phrasesToHighlight),
|
|
349
348
|
this.value
|
|
350
|
-
].flat()
|
|
349
|
+
].flat(2)
|
|
351
350
|
);
|
|
352
351
|
console.log({ terms });
|
|
353
352
|
this.dispatchEvent(
|