From 719ae4044edf0273b0fdf99e7c3acd19deefaecd Mon Sep 17 00:00:00 2001 From: wisecolt Date: Tue, 3 Feb 2026 10:08:45 +0000 Subject: [PATCH] =?UTF-8?q?refactor(ui):=20deploy=20ge=C3=A7mi=C5=9Fi=20i?= =?UTF-8?q?=C3=A7in=20native=20scroll=20kullan?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/pages/DeploymentDetailPage.tsx | 45 ++++++++++----------- 1 file changed, 21 insertions(+), 24 deletions(-) diff --git a/frontend/src/pages/DeploymentDetailPage.tsx b/frontend/src/pages/DeploymentDetailPage.tsx index 9db5c6a..af106d0 100644 --- a/frontend/src/pages/DeploymentDetailPage.tsx +++ b/frontend/src/pages/DeploymentDetailPage.tsx @@ -18,7 +18,6 @@ import { JobStatusBadge } from "../components/JobStatusBadge"; import { Label } from "../components/ui/label"; import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "../components/ui/select"; import { Tabs, TabsContent, TabsList, TabsTrigger } from "../components/ui/tabs"; -import { ScrollArea } from "../components/ui/scroll-area"; import { DeploymentInput, DeploymentProject, @@ -423,33 +422,31 @@ export function DeploymentDetailPage() { Deploy Geçmişi - + {runs.length === 0 ? (
Henüz deploy çalıştırılmadı.
) : ( - -
- {runs.map((run) => ( -
-
- - - {new Date(run.startedAt).toLocaleString()} - - {run.message && ( - · {run.message} - )} -
-
- {run.durationMs ? `${Math.round(run.durationMs / 1000)}s` : "-"} -
+
+ {runs.map((run) => ( +
+
+ + + {new Date(run.startedAt).toLocaleString()} + + {run.message && ( + · {run.message} + )}
- ))} -
- +
+ {run.durationMs ? `${Math.round(run.durationMs / 1000)}s` : "-"} +
+
+ ))} +
)}