@progressive-development/pd-page 0.0.1 → 0.0.2
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/index.js +1 -1
- package/package.json +1 -1
- package/src/PdMenu.js +1 -3
package/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
|
package/package.json
CHANGED
package/src/PdMenu.js
CHANGED
|
@@ -159,9 +159,7 @@ export class PdMenu extends LitElement {
|
|
|
159
159
|
${this.logo && (this.logo.src || this.logo.svg)
|
|
160
160
|
? html`
|
|
161
161
|
<li @click="${PdMenu._scrollToTop}">
|
|
162
|
-
|
|
163
|
-
? html` <img src="${this.logo.src}" alt="" /> `
|
|
164
|
-
: this.logo.svg}
|
|
162
|
+
<slot id="slotLogo"></slot>
|
|
165
163
|
</li>
|
|
166
164
|
`
|
|
167
165
|
: ''}
|