mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
player: display newlines properly
This commit is contained in:
parent
1ec0bc1017
commit
feaa888611
1 changed files with 5 additions and 1 deletions
|
@ -26,7 +26,11 @@
|
|||
<p>
|
||||
Uploaded on <b>{{ video.uploadDate }}</b>
|
||||
</p>
|
||||
<p class="uk-light" v-html="video.description"></p>
|
||||
<p
|
||||
class="uk-light"
|
||||
v-if="video.description"
|
||||
v-html="video.description.replaceAll('\n', '<br>')"
|
||||
></p>
|
||||
<a v-if="sponsors && sponsors.segments"
|
||||
>Sponsors Segments: {{ sponsors.segments.length }}</a
|
||||
>
|
||||
|
|
Loading…
Reference in a new issue