@salesforcedevs/docs-components 1.3.106-alpha03 → 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
|
@@ -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 =
|
|
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
|
-
|
|
99
|
-
|
|
98
|
+
(window.location.pathname.includes("/docs/") &&
|
|
99
|
+
window.location.pathname !== "/docs/apis") ||
|
|
100
100
|
window.location.pathname ===
|
|
101
101
|
"/tableau/embedding-playground/overview"
|
|
102
102
|
) {
|
|
103
|
-
this.shouldRender =
|
|
103
|
+
this.shouldRender = true;
|
|
104
104
|
}
|
|
105
105
|
}
|
|
106
106
|
|