Clarify auto-IP display in domain details by showing current IP address if available.

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/91ee7176-0c0f-4391-850c-1442ff09e9c5.jpg
This commit is contained in:
alphaeusmote
2025-04-11 14:32:12 +00:00
parent 37cbbc5857
commit 08bbf0d2c8
2 changed files with 16 additions and 3 deletions
+4 -1
View File
@@ -317,7 +317,10 @@ export type InsertDomain = z.infer<typeof insertDomainSchema>;
export type Domain = typeof domains.$inferSelect;
export type InsertDnsRecord = z.infer<typeof insertDnsRecordSchema>;
export type DnsRecord = typeof dnsRecords.$inferSelect;
export type DnsRecord = typeof dnsRecords.$inferSelect & {
// Runtime property added by the API - not stored in database
currentIp?: string;
};
export type InsertProvider = z.infer<typeof insertProviderSchema>;
export type Provider = typeof providers.$inferSelect;