fix: persist configuration settings properly (#987)

* fix: persist configuration settings properly

* docs: update changelog
This commit is contained in:
ayangweb
2025-11-19 16:09:27 +08:00
committed by GitHub
parent 533bfaf45b
commit 31806b6057
2 changed files with 11 additions and 5 deletions

View File

@@ -7,14 +7,18 @@ title: "Release Notes"
Information about release notes of Coco App is provided here. Information about release notes of Coco App is provided here.
## Latest (In development) ## Latest (In development)
### ❌ Breaking changes
### 🚀 Features ### ❌ Breaking changes
### 🐛 Bug fix
### 🚀 Features
### 🐛 Bug fix
- fix: search_extension should not panic when ext is not found #983 - fix: search_extension should not panic when ext is not found #983
- fix: persist configuration settings properly #987
### ✈️ Improvements ### ✈️ Improvements
## 0.9.0 (2025-11-19) ## 0.9.0 (2025-11-19)

View File

@@ -170,6 +170,8 @@ export const useConnectStore = create<IConnectStore>()(
currentAssistant: state.currentAssistant, currentAssistant: state.currentAssistant,
querySourceTimeout: state.querySourceTimeout, querySourceTimeout: state.querySourceTimeout,
allowSelfSignature: state.allowSelfSignature, allowSelfSignature: state.allowSelfSignature,
searchDelay: state.searchDelay,
compactModeAutoCollapseDelay: state.compactModeAutoCollapseDelay,
}), }),
} }
) )