mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
chore: lint
This commit is contained in:
@@ -13,20 +13,20 @@ import { DateTooltip } from "@/components/shared/date-tooltip";
|
|||||||
|
|
||||||
interface PreviewDeploymentCardProps {
|
interface PreviewDeploymentCardProps {
|
||||||
appName: string;
|
appName: string;
|
||||||
serverId: string | undefined;
|
serverId: string;
|
||||||
onDeploymentDelete: (deploymentId: string) => void;
|
onDeploymentDelete: (deploymentId: string) => void;
|
||||||
deploymentId: string;
|
deploymentId: string;
|
||||||
deploymentUrl: string;
|
deploymentUrl: string;
|
||||||
deployments: RouterOutputs["deployment"]["all"];
|
deployments: RouterOutputs["deployment"]["all"];
|
||||||
|
|
||||||
domainId: string | undefined;
|
domainId: string;
|
||||||
domainHost: string | undefined;
|
domainHost: string;
|
||||||
|
|
||||||
pullRequestTitle: string | undefined;
|
pullRequestTitle: string;
|
||||||
pullRequestUrl: string | undefined;
|
pullRequestUrl: string;
|
||||||
status: "running" | "error" | "done" | "idle" | undefined | null;
|
status: "running" | "error" | "done" | "idle" | undefined | null;
|
||||||
branch: string | undefined;
|
branch: string;
|
||||||
date: string | undefined;
|
date: string;
|
||||||
isLoading: boolean;
|
isLoading: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -99,15 +99,15 @@ export const ShowPreviewDeployments = ({ applicationId }: Props) => {
|
|||||||
deploymentId={previewDeployment.previewDeploymentId}
|
deploymentId={previewDeployment.previewDeploymentId}
|
||||||
deploymentUrl={`http://${domain?.host}`}
|
deploymentUrl={`http://${domain?.host}`}
|
||||||
deployments={previewDeployment?.deployments || []}
|
deployments={previewDeployment?.deployments || []}
|
||||||
domainId={domain?.domainId}
|
domainId={domain?.domainId || ""}
|
||||||
domainHost={domain?.host}
|
domainHost={domain?.host || ""}
|
||||||
pullRequestTitle={
|
pullRequestTitle={
|
||||||
previewDeployment?.pullRequestTitle
|
previewDeployment?.pullRequestTitle || ""
|
||||||
}
|
}
|
||||||
pullRequestUrl={previewDeployment?.pullRequestURL}
|
pullRequestUrl={previewDeployment?.pullRequestURL || ""}
|
||||||
status={previewDeployment.previewStatus}
|
status={previewDeployment.previewStatus}
|
||||||
branch={previewDeployment?.branch}
|
branch={previewDeployment?.branch || ""}
|
||||||
date={previewDeployment?.createdAt}
|
date={previewDeployment?.createdAt || ""}
|
||||||
isLoading={isLoading}
|
isLoading={isLoading}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
|
|||||||
Reference in New Issue
Block a user