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 {
|
||||
appName: string;
|
||||
serverId: string | undefined;
|
||||
serverId: string;
|
||||
onDeploymentDelete: (deploymentId: string) => void;
|
||||
deploymentId: string;
|
||||
deploymentUrl: string;
|
||||
deployments: RouterOutputs["deployment"]["all"];
|
||||
|
||||
domainId: string | undefined;
|
||||
domainHost: string | undefined;
|
||||
domainId: string;
|
||||
domainHost: string;
|
||||
|
||||
pullRequestTitle: string | undefined;
|
||||
pullRequestUrl: string | undefined;
|
||||
pullRequestTitle: string;
|
||||
pullRequestUrl: string;
|
||||
status: "running" | "error" | "done" | "idle" | undefined | null;
|
||||
branch: string | undefined;
|
||||
date: string | undefined;
|
||||
branch: string;
|
||||
date: string;
|
||||
isLoading: boolean;
|
||||
}
|
||||
|
||||
|
||||
@@ -99,15 +99,15 @@ export const ShowPreviewDeployments = ({ applicationId }: Props) => {
|
||||
deploymentId={previewDeployment.previewDeploymentId}
|
||||
deploymentUrl={`http://${domain?.host}`}
|
||||
deployments={previewDeployment?.deployments || []}
|
||||
domainId={domain?.domainId}
|
||||
domainHost={domain?.host}
|
||||
domainId={domain?.domainId || ""}
|
||||
domainHost={domain?.host || ""}
|
||||
pullRequestTitle={
|
||||
previewDeployment?.pullRequestTitle
|
||||
previewDeployment?.pullRequestTitle || ""
|
||||
}
|
||||
pullRequestUrl={previewDeployment?.pullRequestURL}
|
||||
pullRequestUrl={previewDeployment?.pullRequestURL || ""}
|
||||
status={previewDeployment.previewStatus}
|
||||
branch={previewDeployment?.branch}
|
||||
date={previewDeployment?.createdAt}
|
||||
branch={previewDeployment?.branch || ""}
|
||||
date={previewDeployment?.createdAt || ""}
|
||||
isLoading={isLoading}
|
||||
/>
|
||||
)}
|
||||
|
||||
Reference in New Issue
Block a user