fix modified indicator for local settings

This commit is contained in:
Henry Jameson 2026-03-23 15:37:31 +02:00
commit b8557bb678
3 changed files with 17 additions and 2 deletions

View file

@ -322,8 +322,9 @@ export default {
switch (this.realSource) {
case 'profile':
return {}
default:
return get(useInstanceStore().prefsStorage, this.path)
default: {
return get(useSyncConfigStore().mergedConfigDefault, this.path)
}
}
},
isProfileSetting() {