Skip to content

Commit 31806b6

Browse files
authored
fix: persist configuration settings properly (#987)
* fix: persist configuration settings properly * docs: update changelog
1 parent 533bfaf commit 31806b6

2 files changed

Lines changed: 11 additions & 5 deletions

File tree

docs/content.en/docs/release-notes/_index.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,18 @@ title: "Release Notes"
77

88
Information about release notes of Coco App is provided here.
99

10-
## Latest (In development)
11-
### ❌ Breaking changes
12-
### 🚀 Features
13-
### 🐛 Bug fix
10+
## Latest (In development)
11+
12+
### ❌ Breaking changes
13+
14+
### 🚀 Features
15+
16+
### 🐛 Bug fix
1417

1518
- fix: search_extension should not panic when ext is not found #983
19+
- fix: persist configuration settings properly #987
1620

17-
### ✈️ Improvements
21+
### ✈️ Improvements
1822

1923
## 0.9.0 (2025-11-19)
2024

src/stores/connectStore.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,8 @@ export const useConnectStore = create<IConnectStore>()(
170170
currentAssistant: state.currentAssistant,
171171
querySourceTimeout: state.querySourceTimeout,
172172
allowSelfSignature: state.allowSelfSignature,
173+
searchDelay: state.searchDelay,
174+
compactModeAutoCollapseDelay: state.compactModeAutoCollapseDelay,
173175
}),
174176
}
175177
)

0 commit comments

Comments
 (0)