Skip to content

Commit

Permalink
Merge pull request #1100 from Dokploy/canary
Browse files Browse the repository at this point in the history
v0.17.1
  • Loading branch information
Siumauricio authored Jan 13, 2025
2 parents 8e4d8d6 + dd3fcce commit f2f3986
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 8 deletions.
4 changes: 2 additions & 2 deletions apps/dokploy/components/dashboard/projects/show.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export const ShowProjects = () => {
</span>
</div>
)}
<div className="w-full grid sm:grid-cols-2 lg:grid-cols-4 flex-wrap gap-5">
<div className="w-full grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-4 flex-wrap gap-5">
{filteredProjects?.map((project) => {
const emptyServices =
project?.mariadb.length === 0 &&
Expand Down Expand Up @@ -145,7 +145,7 @@ export const ShowProjects = () => {
<Link
href={`/dashboard/project/${project.projectId}`}
>
<Card className="group relative w-full bg-transparent transition-colors hover:bg-border">
<Card className="group relative w-full h-full bg-transparent transition-colors hover:bg-border">
<Button
className="absolute -right-3 -top-3 size-9 translate-y-1 rounded-full p-0 opacity-0 transition-all duration-200 group-hover:translate-y-0 group-hover:opacity-100"
size="sm"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,7 @@ export const ShowServers = () => {
const query = router.query;
const { data, refetch, isLoading } = api.server.all.useQuery();
const { mutateAsync } = api.server.remove.useMutation();
const { data: sshKeys } = {
data: [],
};
const { data: sshKeys } = api.sshKey.all.useQuery();
const { data: isCloud } = api.settings.isCloud.useQuery();
const { data: canCreateMoreServers } =
api.stripe.canCreateMoreServers.useQuery();
Expand Down
2 changes: 1 addition & 1 deletion apps/dokploy/components/layouts/side.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -686,7 +686,7 @@ export default function Page({ children }: Props) {
</header>
)}

<div className="flex flex-1 flex-col gap-4 p-4 pt-0">{children}</div>
<div className="flex flex-col w-full gap-4 p-4 pt-0">{children}</div>
</SidebarInset>
</SidebarProvider>
);
Expand Down
2 changes: 1 addition & 1 deletion apps/dokploy/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dokploy",
"version": "v0.17.0",
"version": "v0.17.1",
"private": true,
"license": "Apache-2.0",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion apps/dokploy/pages/dashboard/project/[projectId].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ const Project = (
</div>
) : (
<div className="flex w-full flex-col gap-4">
<div className="grid gap-5 pb-10 sm:grid-cols-2 lg:grid-cols-3">
<div className=" gap-5 pb-10 grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3">
{filteredServices?.map((service) => (
<Card
key={service.id}
Expand Down

0 comments on commit f2f3986

Please sign in to comment.