feat: enhance issue management with edit functionality and UI improvements

- Added Edit Issue dialog to allow users to modify existing issues with fields for title, context, priority, and status.
- Integrated form validation and state management for the edit dialog.
- Updated the IssueManagerPage to handle opening and closing of the edit dialog, as well as submitting updates.
- Improved UI components in SolutionDrawer and ExplorationSection for better user experience.
- Refactored file path input with a browse dialog for selecting files and directories in SettingsPage.
- Adjusted layout and styling in LeftSidebar and OrchestratorPage for better responsiveness and usability.
- Updated localization files to include new strings for the edit dialog and task management.
This commit is contained in:
catlog22
2026-02-07 22:50:36 +08:00
parent dc9a1a1efb
commit 13c4dd0032
13 changed files with 636 additions and 255 deletions

View File

@@ -55,6 +55,24 @@
"creating": "创建中..."
}
},
"editDialog": {
"title": "编辑问题",
"labels": {
"title": "标题",
"context": "上下文",
"priority": "优先级",
"status": "状态"
},
"placeholders": {
"title": "输入问题标题...",
"context": "描述问题上下文..."
},
"buttons": {
"cancel": "取消",
"save": "保存",
"saving": "保存中..."
}
},
"card": {
"id": "ID",
"createdAt": "创建时间",
@@ -183,7 +201,8 @@
"filesTouched": "涉及文件"
},
"tasks": {
"comingSoon": "任务列表即将推出"
"comingSoon": "任务列表即将推出",
"empty": "该解决方案下暂无任务"
}
},
"discovery": {