feat: set topic position to left

This commit is contained in:
kangfenmao
2024-11-01 12:28:13 +08:00
parent 4ce6975ed5
commit 30c2cfb3c5
2 changed files with 5 additions and 1 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ const persistedReducer = persistReducer(
{
key: 'cherry-studio',
storage,
version: 35,
version: 36,
blacklist: ['runtime'],
migrate
},
+4
View File
@@ -614,6 +614,10 @@ const migrateConfig = {
'35': (state: RootState) => {
state.settings.mathEngine = 'KaTeX'
return state
},
'36': (state: RootState) => {
state.settings.topicPosition = 'left'
return state
}
}