mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-06-28 18:45:22 +02:00
[autofix.ci] apply automated fixes
This commit is contained in:
@@ -84,7 +84,7 @@ export const ShowPatches = ({ id, type }: Props) => {
|
||||
|
||||
return (
|
||||
<Card className="bg-background">
|
||||
<CardHeader className="flex flex-row items-center justify-between">
|
||||
<CardHeader className="flex flex-row items-center justify-between">
|
||||
<div>
|
||||
<CardTitle>Patches</CardTitle>
|
||||
<CardDescription>
|
||||
@@ -185,8 +185,7 @@ export const ShowPatches = ({ id, type }: Props) => {
|
||||
</TableCell>
|
||||
<TableCell>
|
||||
<div className="flex items-center gap-1">
|
||||
{(patch.type === "update" ||
|
||||
patch.type === "create") && (
|
||||
{(patch.type === "update" || patch.type === "create") && (
|
||||
<EditPatchDialog
|
||||
patchId={patch.patchId}
|
||||
entityId={id}
|
||||
|
||||
@@ -232,11 +232,7 @@ export const patchRouter = createTRPCRouter({
|
||||
// For delete patches, show current file content from repo (what will be deleted)
|
||||
if (existingPatch?.type === "delete") {
|
||||
try {
|
||||
return await readPatchRepoFile(
|
||||
input.id,
|
||||
input.type,
|
||||
input.filePath,
|
||||
);
|
||||
return await readPatchRepoFile(input.id, input.type, input.filePath);
|
||||
} catch {
|
||||
return "(File not found in repo - will be removed if it exists)";
|
||||
}
|
||||
@@ -342,11 +338,7 @@ export const patchRouter = createTRPCRouter({
|
||||
}
|
||||
}
|
||||
|
||||
return await markPatchForDeletion(
|
||||
input.filePath,
|
||||
input.id,
|
||||
input.type,
|
||||
);
|
||||
return await markPatchForDeletion(input.filePath, input.id, input.type);
|
||||
}),
|
||||
|
||||
// Cleanup
|
||||
|
||||
Reference in New Issue
Block a user