Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions apps/dokploy/components/dashboard/compose/general/show.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,13 @@ export const ShowGeneralCompose = ({ composeId }: Props) => {
<>
<Card className="bg-background">
<CardHeader>
<div className="flex flex-row gap-2 justify-between flex-wrap">
<CardTitle className="text-xl">Deploy Settings</CardTitle>
<Badge>
{data?.composeType === "docker-compose" ? "Compose" : "Stack"}
</Badge>
<div className="flex flex-row gap-2 justify-between flex-wrap items-center">
<div className="flex flex-row gap-2 items-center flex-wrap">
<CardTitle className="text-xl">Deploy Settings</CardTitle>
<Badge>
{data?.composeType === "docker-compose" ? "Compose" : "Stack"}
</Badge>
</div>
</div>

<CardDescription>
Expand Down
Loading