extracted terminal to a widget

This commit is contained in:
2026-02-17 18:46:18 +00:00
parent c6999ea66f
commit 0746844d6f
98 changed files with 487 additions and 3513 deletions
@@ -1,7 +1,6 @@
import { useState, useEffect } from 'react';
import { Search, AlertCircle, CheckCircle2, Clock, ArrowLeft } from 'lucide-react';
import { useClient } from 'hooks/useClient';
import { DashboardLayout } from '../Layout';
import { Card } from '@/components/Card';
import { MessageBubble, type ChatMessage } from 'plugins/Chat/client';
@@ -77,8 +76,7 @@ export const TaskLogs = () => {
: logs;
return (
<DashboardLayout>
<div className="flex h-full p-3 md:p-6 gap-4">
<div className="flex h-full p-3 md:p-6 gap-4">
{/* Left panel: list */}
<Card
className={`md:w-80 shrink-0 flex flex-col overflow-hidden ${showDetail ? 'hidden md:flex' : 'flex-1 md:flex-none'}`}
@@ -174,7 +172,6 @@ export const TaskLogs = () => {
</>
)}
</Card>
</div>
</DashboardLayout>
</div>
);
};