Skip to content

Commit 9e4efae

Browse files
authored
Merge pull request #1331 from Dokploy/canary
🚀 Release v0.18.4
2 parents 0db9cb4 + 56af894 commit 9e4efae

File tree

27 files changed

+1527
-19
lines changed

27 files changed

+1527
-19
lines changed

apps/dokploy/components/dashboard/monitoring/free/container/show-free-compose-monitoring.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import { badgeStateColor } from "@/components/dashboard/application/logs/show";
2+
import { Badge } from "@/components/ui/badge";
13
import { Button } from "@/components/ui/button";
24
import {
35
Card,
@@ -96,7 +98,10 @@ export const ComposeFreeMonitoring = ({
9698
key={container.containerId}
9799
value={container.name}
98100
>
99-
{container.name} ({container.containerId}) {container.state}
101+
{container.name} ({container.containerId}){" "}
102+
<Badge variant={badgeStateColor(container.state)}>
103+
{container.state}
104+
</Badge>
100105
</SelectItem>
101106
))}
102107
<SelectLabel>Containers ({data?.length})</SelectLabel>

apps/dokploy/components/dashboard/monitoring/paid/container/show-paid-compose-monitoring.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import { badgeStateColor } from "@/components/dashboard/application/logs/show";
2+
import { Badge } from "@/components/ui/badge";
13
import { Button } from "@/components/ui/button";
24
import {
35
Card,
@@ -102,7 +104,9 @@ export const ComposePaidMonitoring = ({
102104
value={container.name}
103105
>
104106
{container.name} ({container.containerId}){" "}
105-
{container.state}
107+
<Badge variant={badgeStateColor(container.state)}>
108+
{container.state}
109+
</Badge>
106110
</SelectItem>
107111
))}
108112
<SelectLabel>Containers ({data?.length})</SelectLabel>

apps/dokploy/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dokploy",
3-
"version": "v0.18.3",
3+
"version": "v0.18.4",
44
"private": true,
55
"license": "Apache-2.0",
66
"type": "module",

apps/dokploy/pages/dashboard/project/[projectId].tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ import type {
7070
} from "next";
7171
import Head from "next/head";
7272
import { useRouter } from "next/router";
73-
import { useMemo, useState, type ReactElement } from "react";
74-
import superjson from "superjson";
73+
import { type ReactElement, useMemo, useState } from "react";
7574
import { toast } from "sonner";
75+
import superjson from "superjson";
7676

7777
export type Services = {
7878
appName: string;
Lines changed: 9 additions & 0 deletions
Loading
Lines changed: 5 additions & 0 deletions
Loading
2.11 KB
Loading
28.3 KB
Loading
23.8 KB
Loading

0 commit comments

Comments
 (0)