We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db97de2 commit c065c85Copy full SHA for c065c85
apps/dokploy/components/dashboard/projects/show.tsx
@@ -190,7 +190,9 @@ export const ShowProjects = () => {
190
Create and manage your projects
191
</CardDescription>
192
</CardHeader>
193
- {(auth?.role === "owner" || auth?.canCreateProjects) && (
+ {(auth?.role === "owner" ||
194
+ auth?.role === "admin" ||
195
+ auth?.canCreateProjects) && (
196
<div className="">
197
<HandleProject />
198
</div>
0 commit comments