@salesforcedevs/docs-components 1.3.282 → 1.3.296

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.282",
3
+ "version": "1.3.296",
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": "21e8d824aabb661c500aade3a5d55f9721256f8c"
27
+ "gitHead": "7a3e47bb11802dbded4c5bd3814b408cbeedecd7"
28
28
  }
@@ -707,7 +707,7 @@ export default class DocXmlContent extends LightningElementWithState<{
707
707
  const title = document.querySelector("title");
708
708
  const composedTitle = this.getComposedTitle(topicTitle, this.docTitle);
709
709
 
710
- if (title) {
710
+ if (title && title.textContent) {
711
711
  title.textContent = composedTitle;
712
712
  }
713
713
  const metatitle = document.querySelector('meta[name="title"]');