fix(cr): `is-changed` indicators

pull/399/head
Kobi Meirson 2022-10-20 15:25:30 +03:00
parent e2ef52d63d
commit 35c3a656c6
No known key found for this signature in database
GPG Key ID: 5D66F732B037CDE1
2 changed files with 4 additions and 4 deletions

View File

@ -39,7 +39,7 @@ THE SOFTWARE.
</PrettyCheck>
</div>
</div>
<div v-if="$props.data.accessLog.computed" class="control field is-horizontal is-expanded">
<div v-if="$props.data.accessLog.computed" :class="`control field is-horizontal is-expanded${accessLogPathChanged ? ' is-changed' : ''}`">
<input
v-model="accessLogPath"
class="input"
@ -81,7 +81,7 @@ THE SOFTWARE.
{{ $t('templates.domainSections.logging.enableForThisDomain') }}
</PrettyCheck>
</div>
<div v-if="$props.data.errorLog.computed" class="control field is-horizontal is-expanded">
<div v-if="$props.data.errorLog.computed" :class="`control field is-horizontal is-expanded${errorLogPathChanged ? ' is-changed' : ''}`">
<input
v-model="errorLogPath"
class="input"

View File

@ -39,7 +39,7 @@ THE SOFTWARE.
</PrettyCheck>
</div>
</div>
<div v-if="$props.data.accessLog.computed" class="control field is-horizontal is-expanded">
<div v-if="$props.data.accessLog.computed" :class="`control field is-horizontal is-expanded${accessLogPathChanged ? ' is-changed' : ''}`">
<input
v-model="accessLogPath"
class="input"
@ -82,7 +82,7 @@ THE SOFTWARE.
</PrettyCheck>
</div>
</div>
<div v-if="$props.data.errorLog.computed" class="control field is-horizontal is-expanded">
<div v-if="$props.data.errorLog.computed" :class="`control field is-horizontal is-expanded${errorLogPathChanged ? ' is-changed' : ''}`">
<input
v-model="errorLogPath"
class="input"