Skip to content
Snippets Groups Projects
Commit 1659c973 authored by jackie / Andrea Ida Malkah Klaura's avatar jackie / Andrea Ida Malkah Klaura
Browse files

FIX: switch p and div, so p is in div

this is syntactically more correct.
also the linter does not complain anymore now :)
parent 19b1ba6f
No related branches found
No related tags found
No related merge requests found
......@@ -21,13 +21,13 @@
<span v-if="loaded.shows">{{ shows[currentShow].short_description }}</span>
<img src="../assets/16x16/emblem-system.png" alt="edit short description" v-on:click="$refs.appModalShow.showShortDescription()" />
</template>
<p v-if="loaded.shows">
<div v-if="loaded.shows">
<b>Description:</b> <img src="../assets/16x16/emblem-system.png" alt="edit description" v-on:click="$refs.appModalShow.showDescription()" />
<div v-if="loaded.shows">
<div v-html="sanitizedShowDescription"></div>
<p v-html="sanitizedShowDescription"></p>
<!-- TODO: add image and logo here? -->
</div>
</p>
</div>
</b-jumbotron>
<div v-if="!loaded.shows">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment