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
|
}}</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>
|
||||||
|
|||||||
Reference in New Issue
Block a user