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 0045608 commit b166cd5Copy full SHA for b166cd5
apps/dokploy/components/layouts/user-nav.tsx
@@ -149,6 +149,17 @@ export const UserNav = () => {
149
Servers
150
</DropdownMenuItem>
151
)}
152
+
153
+ {data?.rol === "admin" && (
154
+ <DropdownMenuItem
155
+ className="cursor-pointer"
156
+ onClick={() => {
157
+ router.push("/dashboard/settings");
158
+ }}
159
+ >
160
+ Settings
161
+ </DropdownMenuItem>
162
+ )}
163
</>
164
165
</DropdownMenuGroup>
apps/dokploy/package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "dokploy",
3
- "version": "v0.17.3",
+ "version": "v0.17.4",
4
"private": true,
5
"license": "Apache-2.0",
6
"type": "module",
0 commit comments