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` : "-"} +
+
+ ))} +
)}