fix(cr): `is-changed` indicators
parent
e2ef52d63d
commit
35c3a656c6
|
@ -39,7 +39,7 @@ THE SOFTWARE.
|
||||||
</PrettyCheck>
|
</PrettyCheck>
|
||||||
</div>
|
</div>
|
||||||
</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
|
<input
|
||||||
v-model="accessLogPath"
|
v-model="accessLogPath"
|
||||||
class="input"
|
class="input"
|
||||||
|
@ -81,7 +81,7 @@ THE SOFTWARE.
|
||||||
{{ $t('templates.domainSections.logging.enableForThisDomain') }}
|
{{ $t('templates.domainSections.logging.enableForThisDomain') }}
|
||||||
</PrettyCheck>
|
</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
|
<input
|
||||||
v-model="errorLogPath"
|
v-model="errorLogPath"
|
||||||
class="input"
|
class="input"
|
||||||
|
|
|
@ -39,7 +39,7 @@ THE SOFTWARE.
|
||||||
</PrettyCheck>
|
</PrettyCheck>
|
||||||
</div>
|
</div>
|
||||||
</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
|
<input
|
||||||
v-model="accessLogPath"
|
v-model="accessLogPath"
|
||||||
class="input"
|
class="input"
|
||||||
|
@ -82,7 +82,7 @@ THE SOFTWARE.
|
||||||
</PrettyCheck>
|
</PrettyCheck>
|
||||||
</div>
|
</div>
|
||||||
</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
|
<input
|
||||||
v-model="errorLogPath"
|
v-model="errorLogPath"
|
||||||
class="input"
|
class="input"
|
||||||
|
|
Loading…
Reference in New Issue