From 31806b6057a46b01b5a24b94e894ec89f253b723 Mon Sep 17 00:00:00 2001 From: ayangweb <75017711+ayangweb@users.noreply.github.com> Date: Wed, 19 Nov 2025 16:09:27 +0800 Subject: [PATCH] fix: persist configuration settings properly (#987) * fix: persist configuration settings properly * docs: update changelog --- docs/content.en/docs/release-notes/_index.md | 14 +++++++++----- src/stores/connectStore.ts | 2 ++ 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/docs/content.en/docs/release-notes/_index.md b/docs/content.en/docs/release-notes/_index.md index 5e733060..8004d297 100644 --- a/docs/content.en/docs/release-notes/_index.md +++ b/docs/content.en/docs/release-notes/_index.md @@ -7,14 +7,18 @@ title: "Release Notes" Information about release notes of Coco App is provided here. -## Latest (In development) -### ❌ Breaking changes -### 🚀 Features -### 🐛 Bug fix +## Latest (In development) + +### ❌ Breaking changes + +### 🚀 Features + +### 🐛 Bug fix - 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) diff --git a/src/stores/connectStore.ts b/src/stores/connectStore.ts index 7c0a0934..32ad83e5 100644 --- a/src/stores/connectStore.ts +++ b/src/stores/connectStore.ts @@ -170,6 +170,8 @@ export const useConnectStore = create()( currentAssistant: state.currentAssistant, querySourceTimeout: state.querySourceTimeout, allowSelfSignature: state.allowSelfSignature, + searchDelay: state.searchDelay, + compactModeAutoCollapseDelay: state.compactModeAutoCollapseDelay, }), } )