From da4b167567aee357a7c2238b8e0c4cbf04579bba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Guti=C3=A9rrez?= <35082514+alezmad@users.noreply.github.com> Date: Mon, 2 Feb 2026 17:52:16 +0000 Subject: [PATCH] Add deployed site link to deployments table Shows globe icon linking to application_fqdn for finished deployments. Co-Authored-By: Claude Opus 4.5 --- src/components/DeploymentsTable.tsx | 13 +++++++++++++ src/lib/deployments.ts | 1 + 2 files changed, 14 insertions(+) diff --git a/src/components/DeploymentsTable.tsx b/src/components/DeploymentsTable.tsx index bd697bd..a53af0a 100644 --- a/src/components/DeploymentsTable.tsx +++ b/src/components/DeploymentsTable.tsx @@ -175,12 +175,25 @@ export function DeploymentsTable({ deployments, isLoading, onRefresh }: Deployme id: 'actions', cell: ({ row }) => (
+ {row.original.application_fqdn && row.original.status === 'finished' && ( + e.stopPropagation()} + title="Open deployed site" + > + + + )} e.stopPropagation()} + title="View in Coolify" > diff --git a/src/lib/deployments.ts b/src/lib/deployments.ts index f4d691f..bba3b39 100644 --- a/src/lib/deployments.ts +++ b/src/lib/deployments.ts @@ -4,6 +4,7 @@ export interface Deployment { deployment_uuid: string; application_uuid: string; application_name: string; + application_fqdn?: string; // URL to deployed site status: DeploymentStatus; created_at: string; updated_at: string;