@salesforcedevs/dx-components 0.19.3-alpha.14 → 0.19.3-alpha.15

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.14",
3
+ "version": "0.19.3-alpha.15",
4
4
  "description": "DX Lightning web components",
5
5
  "license": "MIT",
6
6
  "engines": {
@@ -144,6 +144,7 @@ export default class SidebarSearch extends LightningElement {
144
144
  // If this is the first render and there is a search value, trigger
145
145
  // term highlighting
146
146
  if (!this.didRender && this.value) {
147
+ console.log('dispatching highlight term in the render')
147
148
  this.dispatchHighlightedTermChange();
148
149
  }
149
150