@salesforcedevs/dx-components 0.19.3-alpha.32 → 0.19.3-alpha.33

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforcedevs/dx-components",
3
- "version": "0.19.3-alpha.32",
3
+ "version": "0.19.3-alpha.33",
4
4
  "description": "DX Lightning web components",
5
5
  "license": "MIT",
6
6
  "engines": {
@@ -338,9 +338,9 @@ export default class SidebarSearch extends LightningElement {
338
338
  const normalizedTermsToHighlight = Array.from(
339
339
  new Set(
340
340
  [
341
+ this.value,
341
342
  Object.values(termsToHighlight),
342
- Object.values(phrasesToHighlight),
343
- this.value
343
+ Object.values(phrasesToHighlight)
344
344
  ].flat(2)
345
345
  )
346
346
  );