add v-html for description

This commit is contained in:
raishvaria
2020-12-01 12:08:24 +05:30
parent 2df09a20f1
commit 33085a0e3c

View File

@ -36,8 +36,11 @@
}}</label }}</label
><br /> ><br />
<label class="version">{{ updateData.version }}</label> <label class="version">{{ updateData.version }}</label>
<p class="page-sub-title" style="white-space: pre-wrap;"> <p
{{ description }} class="page-sub-title"
style="white-space: pre-wrap;"
v-html="description"
>
</p> </p>
<label class="input-label"> <label class="input-label">
{{ $t('settings.update_app.requirements') }} {{ $t('settings.update_app.requirements') }}
@ -83,12 +86,12 @@
<li class="update-step" v-for="step in updateSteps"> <li class="update-step" v-for="step in updateSteps">
<p class="update-step-text">{{ $t(step.translationKey) }}</p> <p class="update-step-text">{{ $t(step.translationKey) }}</p>
<div class="update-status-container"> <div class="update-status-container">
<span v-if="step.time" class="update-time">{{ <span v-if="step.time" class="update-time">
step.time {{step.time}}
}}</span> </span>
<span :class="'update-status status-' + getStatus(step)">{{ <span :class="'update-status status-' + getStatus(step)">
getStatus(step) {{getStatus(step)}}
}}</span> </span>
</div> </div>
</li> </li>
</ul> </ul>