@salesforcedevs/docs-components 1.3.106-alpha04 → 1.3.106-alpha05

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.106-alpha04",
3
+ "version": "1.3.106-alpha05",
4
4
  "description": "Docs Lightning web components for DSC",
5
5
  "license": "MIT",
6
6
  "main": "index.js",
@@ -50,7 +50,7 @@ export default class Header extends HeaderBase {
50
50
  private smallMobileMatchMedia!: MediaQueryList;
51
51
  private tablet = false;
52
52
  private tabletMatchMedia!: MediaQueryList;
53
- private shouldRender = true;
53
+ private shouldRender = false;
54
54
 
55
55
  protected mobileBreakpoint(): string {
56
56
  return MOBILE_MATCH;
@@ -95,12 +95,12 @@ export default class Header extends HeaderBase {
95
95
  this.onSmallMobileChange
96
96
  );
97
97
  if (
98
- (!window.location.pathname.includes("/docs/") ||
99
- window.location.pathname === "/docs/apis") &&
100
- window.location.pathname !==
98
+ (window.location.pathname.includes("/docs/") &&
99
+ window.location.pathname !== "/docs/apis") ||
100
+ window.location.pathname ===
101
101
  "/tableau/embedding-playground/overview"
102
102
  ) {
103
- this.shouldRender = false;
103
+ this.shouldRender = true;
104
104
  }
105
105
  }
106
106