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 cd35adc commit 9008ac6Copy full SHA for 9008ac6
docs/components/main-docs.js
@@ -43,16 +43,15 @@ export default {
43
render(h) {
44
// Lead section
45
const $leadSection = h(Section, {
46
- props: { play: false },
+ props: { tag: 'header', play: false },
47
domProps: { innerHTML: this.titleLead }
48
})
49
// Available since section
50
let $availableSinceSection = h()
51
if (this.availableSince) {
52
- $availableSinceSection = h(Section, {
53
- props: { tag: 'header', play: false },
54
- domProps: { innerHTML: this.availableSince }
55
- })
+ $availableSinceSection = h(Section, { props: { play: false } }, [
+ h('p', { domProps: { innerHTML: this.availableSince } })
+ ])
56
}
57
// Carbon Ad
58
const $carbonAd = h(CarbonAd, { key: `ad-${this.docPath}` })
0 commit comments