mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-06-28 02:25:23 +02:00
Refactor ShowDomains component to enhance domain validation functionality with real-time feedback and improved UI. Integrate tooltips for domain details and validation status, and update API queries for better data handling.
This commit is contained in:
@@ -37,14 +37,14 @@ interface Props {
|
||||
composeId: string;
|
||||
}
|
||||
|
||||
type ValidationState = {
|
||||
export type ValidationState = {
|
||||
isLoading: boolean;
|
||||
isValid?: boolean;
|
||||
error?: string;
|
||||
resolvedIp?: string;
|
||||
};
|
||||
|
||||
type ValidationStates = {
|
||||
export type ValidationStates = {
|
||||
[key: string]: ValidationState;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user