From 3addd3a83d6c41371df24c6f8b01cfb74d2490e0 Mon Sep 17 00:00:00 2001 From: alphaeusmote <41258468-alphaeusmote@users.noreply.replit.com> Date: Fri, 11 Apr 2025 15:52:47 +0000 Subject: [PATCH] Add full domain path display to domain details Replit-Commit-Author: Agent Replit-Commit-Session-Id: 9111ef36-26c8-4085-84ca-a35dc1fec1b5 Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/7083d608-d6d3-4a6a-9a27-6286c5109627/769d6639-1c95-46e7-8b5d-7115f4d4f63c.jpg --- .../src/components/domain/domain-details.tsx | 41 +++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/client/src/components/domain/domain-details.tsx b/client/src/components/domain/domain-details.tsx index 2f7e95e..4cda176 100644 --- a/client/src/components/domain/domain-details.tsx +++ b/client/src/components/domain/domain-details.tsx @@ -428,6 +428,7 @@ export function DomainDetails({ domain, onBack }: DomainDetailsProps) { Name + Full Domain Type AutoIP Content @@ -456,6 +457,46 @@ export function DomainDetails({ domain, onBack }: DomainDetailsProps) { record.name )} + + {/* Full Domain Path with copy functionality */} + + + + + + +

+ {record.name === "@" + ? domain.name + : `${record.name}.${domain.name}`} +

+

Click to copy

+
+
+
+
{record.type}