fixes for stuff i missed

このコミットが含まれているのは:
Henry Jameson 2023-03-12 17:11:20 +02:00
コミット 6a7b182af1
5個のファイルの変更17行の追加14行の削除

ファイルの表示

@ -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"
>