From 76f0b281c111aaa6579c04b9a5e187fb022cc892 Mon Sep 17 00:00:00 2001 From: Baobhan Sith <80159437+Heavrnl@users.noreply.github.com> Date: Fri, 25 Apr 2025 16:23:42 +0800 Subject: [PATCH] Update settings.store.ts --- packages/frontend/src/stores/settings.store.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/packages/frontend/src/stores/settings.store.ts b/packages/frontend/src/stores/settings.store.ts index 0e994da..396f5d1 100644 --- a/packages/frontend/src/stores/settings.store.ts +++ b/packages/frontend/src/stores/settings.store.ts @@ -42,10 +42,9 @@ interface SettingsState { sidebarPaneWidths?: string; // NEW: 存储各侧边栏组件宽度的 JSON 字符串 fileManagerRowSizeMultiplier?: string; // NEW: 文件管理器行大小乘数 (e.g., '1.0') fileManagerColWidths?: string; // NEW: 文件管理器列宽 JSON 字符串 (e.g., '{"name": 300, "size": 100}') - fileManagerColWidths?: string; // NEW: 文件管理器列宽 JSON 字符串 (e.g., '{"name": 300, "size": 100}') - commandInputSyncTarget?: 'quickCommands' | 'commandHistory' | 'none'; // NEW: 命令输入同步目标 - // Add other general settings keys here as needed - [key: string]: string | undefined; // Allow other string settings + commandInputSyncTarget?: 'quickCommands' | 'commandHistory' | 'none'; // NEW: 命令输入同步目标 + // Add other general settings keys here as needed + [key: string]: string | undefined; // Allow other string settings }