mirror of
https://github.com/infinilabs/coco-app.git
synced 2025-12-16 19:47:43 +01:00
fix: persist configuration settings properly (#987)
* fix: persist configuration settings properly * docs: update changelog
This commit is contained in:
@@ -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)
|
||||||
|
|
||||||
|
|||||||
@@ -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,
|
||||||
}),
|
}),
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user