fixes for stuff i missed
This commit is contained in:
parent
947b73f870
commit
6a7b182af1
|
@ -19,7 +19,7 @@
|
|||
:changed="isChanged"
|
||||
:onclick="reset"
|
||||
/>
|
||||
<ProfileSettingIndicator :is-profile="isProfileTied" />
|
||||
<ProfileSettingIndicator :is-profile="isProfileSetting" />
|
||||
</Checkbox>
|
||||
</label>
|
||||
</template>
|
||||
|
|
|
@ -62,7 +62,7 @@ export default {
|
|||
return get(this.$store.getters.defaultConfig, this.path)
|
||||
}
|
||||
},
|
||||
isProfileTied () {
|
||||
isProfileSetting () {
|
||||
return this.source === 'profile'
|
||||
},
|
||||
isChanged () {
|
||||
|
|
|
@ -4,6 +4,9 @@ const SharedComputedObject = () => ({
|
|||
},
|
||||
expertLevel () {
|
||||
return this.$store.getters.mergedConfig.expertLevel > 0
|
||||
},
|
||||
mergedConfig () {
|
||||
return this.$store.getters.mergedConfig
|
||||
}
|
||||
})
|
||||
|
||||
|
|
|
@ -210,7 +210,7 @@
|
|||
</ChoiceSetting>
|
||||
</li>
|
||||
<ul
|
||||
v-if="conversationDisplay !== 'linear'"
|
||||
v-if="mergedConfig.conversationDisplay !== 'linear'"
|
||||
class="setting-list suboptions"
|
||||
>
|
||||
<li>
|
||||
|
|
|
@ -143,8 +143,8 @@
|
|||
/>
|
||||
</div>
|
||||
<div>
|
||||
<i18n
|
||||
path="settings.new_alias_target"
|
||||
<i18n-t
|
||||
keypath="settings.new_alias_target"
|
||||
tag="p"
|
||||
>
|
||||
<code
|
||||
|
@ -152,7 +152,7 @@
|
|||
>
|
||||
foo@example.org
|
||||
</code>
|
||||
</i18n>
|
||||
</i18n-t>
|
||||
<input
|
||||
v-model="addAliasTarget"
|
||||
>
|
||||
|
@ -175,16 +175,16 @@
|
|||
<h2>{{ $t('settings.move_account') }}</h2>
|
||||
<p>{{ $t('settings.move_account_notes') }}</p>
|
||||
<div>
|
||||
<i18n
|
||||
path="settings.move_account_target"
|
||||
<i18n-t
|
||||
keypath="settings.move_account_target"
|
||||
tag="p"
|
||||
>
|
||||
<code
|
||||
place="example"
|
||||
>
|
||||
foo@example.org
|
||||
</code>
|
||||
</i18n>
|
||||
<template #example>
|
||||
<code>
|
||||
foo@example.org
|
||||
</code>
|
||||
</template>
|
||||
</i18n-t>
|
||||
<input
|
||||
v-model="moveAccountTarget"
|
||||
>
|
||||
|
|
Loading…
Reference in New Issue