remove unnecessary double if statement

This commit is contained in:
vr10t 2023-02-19 16:00:59 +00:00
parent ed8bb4846a
commit e0e195c7c8

View file

@ -148,11 +148,13 @@
<!-- eslint-disable-next-line vue/no-v-html --> <!-- eslint-disable-next-line vue/no-v-html -->
<div v-show="showDesc" class="break-words" v-html="purifyHTML(video.description)" /> <div v-show="showDesc" class="break-words" v-html="purifyHTML(video.description)" />
<template v-if="showDesc">
<div <div
v-if="showDesc && sponsors && sponsors.segments" v-if="sponsors && sponsors.segments"
v-text="`${$t('video.sponsor_segments')}: ${sponsors.segments.length}`" v-text="`${$t('video.sponsor_segments')}: ${sponsors.segments.length}`"
/> />
<div v-if="showDesc && video.category" v-text="`${$t('video.category')}: ${video.category}`" /> <div v-if="video.category" v-text="`${$t('video.category')}: ${video.category}`" />
</template>
</div> </div>
<hr /> <hr />