@salesforcedevs/docs-components 1.3.19 → 1.3.21

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/docs-components",
3
- "version": "1.3.19",
3
+ "version": "1.3.21",
4
4
  "description": "Docs Lightning web components for DSC",
5
5
  "license": "MIT",
6
6
  "main": "index.js",
@@ -24,5 +24,5 @@
24
24
  "@types/lodash.orderby": "^4.6.7",
25
25
  "@types/lodash.uniqby": "^4.7.7"
26
26
  },
27
- "gitHead": "bbeea73fe1ce336f60e304b3edcc0ff7afd5b99d"
27
+ "gitHead": "a36eb5e6dacd34a36d56483965a7b74aba032c63"
28
28
  }
@@ -264,6 +264,7 @@ export default class Content extends LightningElement {
264
264
 
265
265
  const img: HTMLImageElement = document.createElement("img");
266
266
  img.src = src;
267
+ img.alt = "";
267
268
  if (alt) {
268
269
  img.alt = alt;
269
270
  }