Cleanup usage of message-body
parent
7de025fdc3
commit
eaff796aa5
|
@ -1,5 +1,5 @@
|
||||||
<!--
|
<!--
|
||||||
Copyright 2022 DigitalOcean
|
Copyright 2023 DigitalOcean
|
||||||
|
|
||||||
This code is licensed under the MIT License.
|
This code is licensed under the MIT License.
|
||||||
You may obtain a copy of the License at
|
You may obtain a copy of the License at
|
||||||
|
@ -35,9 +35,9 @@ THE SOFTWARE.
|
||||||
|
|
||||||
<template v-if="!$parent.$props.data.hasUserInteraction || expanded">
|
<template v-if="!$parent.$props.data.hasUserInteraction || expanded">
|
||||||
<div v-if="$parent.$props.data.hasUserInteraction" class="message is-warning">
|
<div v-if="$parent.$props.data.hasUserInteraction" class="message is-warning">
|
||||||
<div class="message-body">
|
<p class="message-body">
|
||||||
{{ $t('templates.domainSections.presets.itLooksLikeYouCustomisedTheConfig') }}
|
{{ $t('templates.domainSections.presets.itLooksLikeYouCustomisedTheConfig') }}
|
||||||
</div>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="buttons-group">
|
<div class="buttons-group">
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<!--
|
<!--
|
||||||
Copyright 2022 DigitalOcean
|
Copyright 2023 DigitalOcean
|
||||||
|
|
||||||
This code is licensed under the MIT License.
|
This code is licensed under the MIT License.
|
||||||
You may obtain a copy of the License at
|
You may obtain a copy of the License at
|
||||||
|
@ -62,7 +62,7 @@ THE SOFTWARE.
|
||||||
<span
|
<span
|
||||||
class="message-body"
|
class="message-body"
|
||||||
v-html="$t('templates.globalSections.security.whenUsingWordPressUnsafeEvalIsOftenRequiredToAllowFunctionality')"
|
v-html="$t('templates.globalSections.security.whenUsingWordPressUnsafeEvalIsOftenRequiredToAllowFunctionality')"
|
||||||
></span>
|
/>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -39,7 +39,10 @@ THE SOFTWARE.
|
||||||
></BashPrism>
|
></BashPrism>
|
||||||
|
|
||||||
<div class="text message is-warning">
|
<div class="text message is-warning">
|
||||||
<p class="message-body" v-html="$t('templates.setupSections.certbot.sslOffDeprecationWarning')" />
|
<p
|
||||||
|
class="message-body"
|
||||||
|
v-html="$t('templates.setupSections.certbot.sslOffDeprecationWarning')"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue