feat: Implement team artifacts feature with tree navigation and file preview

This commit is contained in:
catlog22
2026-02-15 18:14:07 +08:00
parent 0d56396710
commit 4ddd2e9f17
26 changed files with 1250 additions and 3038 deletions

View File

@@ -73,6 +73,7 @@ interface FixProgressData {
* Fix Progress Carousel Component
* Displays fix progress with polling and carousel navigation
*/
// @ts-expect-error Component is defined for future use when backend implements /api/fix-progress
function FixProgressCarousel({ sessionId }: { sessionId: string }) {
const { formatMessage } = useIntl();
const [fixProgressData, setFixProgressData] = React.useState<FixProgressData | null>(null);

View File

@@ -101,7 +101,7 @@ export function TeamPage() {
{/* Artifacts Tab */}
{detailTab === 'artifacts' && (
<TeamArtifacts messages={messages} />
<TeamArtifacts teamName={selectedTeam} />
)}
{/* Messages Tab */}