From eb1111a1b23def927a363e84097829a1e00e609d Mon Sep 17 00:00:00 2001 From: alphaeusmote <41258468-alphaeusmote@users.noreply.replit.com> Date: Fri, 11 Apr 2025 15:48:56 +0000 Subject: [PATCH] Rearrange domain details table: swap "Content" and "AutoIP" columns. 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/f0b62090-6234-4a0a-ac5b-0b6adc9c782f.jpg --- .../src/components/domain/domain-details.tsx | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/client/src/components/domain/domain-details.tsx b/client/src/components/domain/domain-details.tsx index 24bde62..2f7e95e 100644 --- a/client/src/components/domain/domain-details.tsx +++ b/client/src/components/domain/domain-details.tsx @@ -429,8 +429,8 @@ export function DomainDetails({ domain, onBack }: DomainDetailsProps) { Name Type - Content AutoIP + Content TTL Last Update Status @@ -459,6 +459,17 @@ export function DomainDetails({ domain, onBack }: DomainDetailsProps) { {record.type} + + {record.isAutoIP ? ( + + Enabled + + ) : ( + + Disabled + + )} + {record.isAutoIP ? ( record.currentIp ? ( @@ -514,17 +525,6 @@ export function DomainDetails({ domain, onBack }: DomainDetailsProps) { )} - - {record.isAutoIP ? ( - - Enabled - - ) : ( - - Disabled - - )} - {record.ttl}s {record.lastUpdated