Bug: Render header title and tagline as HTML (#906)
* Render header title and tagline as HTML
This commit is contained in:
parent
884a1c5971
commit
586c616ae3
2 changed files with 3 additions and 9 deletions
|
@ -2,12 +2,8 @@
|
|||
<header class="header-expanded">
|
||||
<img v-if="avatarUrl" class="logo" :src="avatarUrl" />
|
||||
<span class="close close-button" @click="closeWindow"></span>
|
||||
<h2 class="title">
|
||||
{{ introHeading }}
|
||||
</h2>
|
||||
<p class="body">
|
||||
{{ introBody }}
|
||||
</p>
|
||||
<h2 class="title" v-html="introHeading"></h2>
|
||||
<p class="body" v-html="introBody"></p>
|
||||
</header>
|
||||
</template>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue