mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-28 12:11:08 -04:00
add v-html for description
This commit is contained in:
@ -36,8 +36,11 @@
|
||||
}}</label
|
||||
><br />
|
||||
<label class="version">{{ updateData.version }}</label>
|
||||
<p class="page-sub-title" style="white-space: pre-wrap;">
|
||||
{{ description }}
|
||||
<p
|
||||
class="page-sub-title"
|
||||
style="white-space: pre-wrap;"
|
||||
v-html="description"
|
||||
>
|
||||
</p>
|
||||
<label class="input-label">
|
||||
{{ $t('settings.update_app.requirements') }}
|
||||
@ -83,12 +86,12 @@
|
||||
<li class="update-step" v-for="step in updateSteps">
|
||||
<p class="update-step-text">{{ $t(step.translationKey) }}</p>
|
||||
<div class="update-status-container">
|
||||
<span v-if="step.time" class="update-time">{{
|
||||
step.time
|
||||
}}</span>
|
||||
<span :class="'update-status status-' + getStatus(step)">{{
|
||||
getStatus(step)
|
||||
}}</span>
|
||||
<span v-if="step.time" class="update-time">
|
||||
{{step.time}}
|
||||
</span>
|
||||
<span :class="'update-status status-' + getStatus(step)">
|
||||
{{getStatus(step)}}
|
||||
</span>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
Reference in New Issue
Block a user