@salesforcedevs/dx-components 0.19.3-alpha.30 → 0.19.3-alpha.31

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.30",
3
+ "version": "0.19.3-alpha.31",
4
4
  "description": "DX Lightning web components",
5
5
  "license": "MIT",
6
6
  "engines": {
@@ -141,12 +141,6 @@ export default class SidebarSearch extends LightningElement {
141
141
  );
142
142
  }
143
143
 
144
- // If this is the first render and there is a search value, trigger
145
- // term highlighting
146
- if (!this.didRender && this.value) {
147
- this.dispatchHighlightedTermChange();
148
- }
149
-
150
144
  this.didRender = true;
151
145
  }
152
146