We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0e05c9 commit b1417d1Copy full SHA for b1417d1
docs/components/main-docs.js
@@ -42,6 +42,7 @@ export default {
42
render(h) {
43
// Lead section
44
const $leadSection = h(Section, {
45
+ key: `lead-${this.docsPath}`,
46
props: { tag: 'header', play: false },
47
domProps: { innerHTML: this.titleLead }
48
})
@@ -53,11 +54,12 @@ export default {
53
54
])
55
}
56
// Carbon Ad
- const $carbonAd = h(CarbonAd, { key: `ad-${this.docPath}` })
57
+ const $carbonAd = h(CarbonAd, { key: `ad-${this.docsPath}` })
58
// Quick links
59
const $quickLinks = h(QuickLinks, { key: `quick-${this.docsPath}` })
60
// Body section
61
const $bodySection = h(Section, {
62
+ key: `body-${this.docsPath}`,
63
props: { play: true },
64
domProps: { innerHTML: this.body }
65
0 commit comments