mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-03-01 15:03:57 +08:00
feat: Enhance Project Overview and Review Session pages with improved UI and functionality
- Updated ProjectOverviewPage to enhance the guidelines section with better spacing, larger icons, and improved button styles. - Refactored ReviewSessionPage to unify filter controls, improve selection actions, and enhance the findings list with a new layout. - Added dimension tabs and severity filters to the SessionsPage for better navigation and filtering. - Improved SessionDetailPage to utilize a mapping for status labels, enhancing internationalization support. - Refactored TaskListTab to remove unused priority configuration code. - Updated store types to better reflect session metadata structure. - Added a temporary JSON file for future use.
This commit is contained in:
@@ -5,7 +5,13 @@
|
||||
"critical": "Critical",
|
||||
"high": "High",
|
||||
"medium": "Medium",
|
||||
"low": "Low"
|
||||
"low": "Low",
|
||||
"short": {
|
||||
"critical": "Crit",
|
||||
"high": "High",
|
||||
"medium": "Med",
|
||||
"low": "Low"
|
||||
}
|
||||
},
|
||||
"stats": {
|
||||
"total": "Total",
|
||||
@@ -22,6 +28,7 @@
|
||||
},
|
||||
"filters": {
|
||||
"severity": "Severity",
|
||||
"dimension": "Dimension",
|
||||
"sort": "Sort",
|
||||
"reset": "Reset"
|
||||
},
|
||||
@@ -35,6 +42,8 @@
|
||||
},
|
||||
"selection": {
|
||||
"count": "{count} selected",
|
||||
"countSelected": "{count} selected",
|
||||
"total": "{count} total",
|
||||
"selectAll": "Select All",
|
||||
"clearAll": "Clear All",
|
||||
"clear": "Clear",
|
||||
@@ -46,6 +55,23 @@
|
||||
"rootCause": "Root Cause",
|
||||
"impact": "Impact",
|
||||
"recommendations": "Recommendations",
|
||||
"findingsList": {
|
||||
"count": "{count} findings"
|
||||
},
|
||||
"preview": {
|
||||
"empty": "Click on a finding to preview details",
|
||||
"emptyTitle": "Select a Finding",
|
||||
"emptyTipSeverity": "Filter by severity",
|
||||
"emptyTipFile": "Group by file",
|
||||
"location": "Location",
|
||||
"description": "Description",
|
||||
"codeContext": "Code Context",
|
||||
"recommendations": "Recommendations",
|
||||
"rootCause": "Root Cause",
|
||||
"impact": "Impact",
|
||||
"selected": "Selected",
|
||||
"selectForFix": "Select"
|
||||
},
|
||||
"fixProgress": {
|
||||
"title": "Fix Progress",
|
||||
"phase": {
|
||||
|
||||
Reference in New Issue
Block a user