fixes for stuff i missed

This commit is contained in:
Henry Jameson 2023-03-12 17:11:20 +02:00
commit 6a7b182af1
5 changed files with 17 additions and 14 deletions

View file

@ -19,7 +19,7 @@
:changed="isChanged"
:onclick="reset"
/>
<ProfileSettingIndicator :is-profile="isProfileTied" />
<ProfileSettingIndicator :is-profile="isProfileSetting" />
</Checkbox>
</label>
</template>

View file

@ -62,7 +62,7 @@ export default {
return get(this.$store.getters.defaultConfig, this.path)
}
},
isProfileTied () {
isProfileSetting () {
return this.source === 'profile'
},
isChanged () {

View file

@ -4,6 +4,9 @@ const SharedComputedObject = () => ({
},
expertLevel () {
return this.$store.getters.mergedConfig.expertLevel > 0
},
mergedConfig () {
return this.$store.getters.mergedConfig
}
})