Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
05a75ed
feat(template): added apache superset (unofficial)
nktnet1 Jan 21, 2025
444121f
fix(template): more appropriate tags for superset
nktnet1 Jan 21, 2025
1a44a0e
refactor(template): use dokploy mount volume for superset_config.py
nktnet1 Jan 21, 2025
ce06cd4
fix(ui): show filePath instead of mountPath for file mounts
nktnet1 Jan 21, 2025
c733898
refactor(ui): clearer ui display condition for volume mount display
nktnet1 Jan 21, 2025
1d86f1a
fix(template): added analytics tag to superset
nktnet1 Jan 21, 2025
6d90e26
fix(ui): volume file mount content, line clamp and preserve whitespace
nktnet1 Jan 21, 2025
692f883
style(i18n) add ukrainian language
mikield Jan 21, 2025
52dbc0d
fix(template): superset healthchecks
nktnet1 Jan 21, 2025
8dad8fd
Merge pull request #1162 from mikield/add-ukrainian-language
Siumauricio Jan 22, 2025
35dd6bf
Merge pull request #1160 from nktnet1/fix-invisible-mount-path
Siumauricio Jan 22, 2025
c0f8218
Merge pull request #1161 from nktnet1/volume-file-mount-content-line-…
Siumauricio Jan 22, 2025
51f6e08
Merge pull request #1158 from nktnet1/superset-unofficial-template
Siumauricio Jan 22, 2025
026e1be
fix: filter navigation items based on user's permissions and role
rahadi23 Jan 22, 2025
a2e9ea2
fix: add condition to show create project button
rahadi23 Jan 22, 2025
9e6e685
fix: adjust dialog title based on add/update condition
rahadi23 Jan 22, 2025
53df7d9
refactor: make protected instead of admin
Siumauricio Jan 22, 2025
02ff507
refactor: update lint
Siumauricio Jan 22, 2025
537caf0
Merge pull request #1167 from Dokploy/fix/creation-users
Siumauricio Jan 22, 2025
baa2ca2
Merge branch 'canary' into bugfix/1165-navigation-items-permissions
Siumauricio Jan 22, 2025
adaf12a
refactor: update
Siumauricio Jan 22, 2025
d0608f4
Merge pull request #1166 from rahadi23/bugfix/1165-navigation-items-p…
Siumauricio Jan 22, 2025
c7d5900
chore: bump version
Siumauricio Jan 22, 2025
81248ed
fix: add continue to process all applications
Siumauricio Jan 22, 2025
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
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export const ShowVolumes = ({ id, type }: Props) => {
{mount.type === "file" && (
<div className="flex flex-col gap-1">
<span className="font-medium">Content</span>
<span className="text-sm text-muted-foreground">
<span className="text-sm text-muted-foreground line-clamp-[10] whitespace-break-spaces">
{mount.content}
</span>
</div>
Expand All @@ -113,12 +113,21 @@ export const ShowVolumes = ({ id, type }: Props) => {
</span>
</div>
)}
<div className="flex flex-col gap-1">
<span className="font-medium">Mount Path</span>
<span className="text-sm text-muted-foreground">
{mount.mountPath}
</span>
</div>
{mount.type === "file" ? (
<div className="flex flex-col gap-1">
<span className="font-medium">File Path</span>
<span className="text-sm text-muted-foreground">
{mount.filePath}
</span>
</div>
) : (
<div className="flex flex-col gap-1">
<span className="font-medium">Mount Path</span>
<span className="text-sm text-muted-foreground">
{mount.mountPath}
</span>
</div>
)}
</div>
<div className="flex flex-row gap-1">
<UpdateVolume
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export const HandleProject = ({ projectId }: Props) => {
</DialogTrigger>
<DialogContent className="sm:m:max-w-lg ">
<DialogHeader>
<DialogTitle>Add a project</DialogTitle>
<DialogTitle>{projectId ? "Update" : "Add a"} project</DialogTitle>
<DialogDescription>The home of something big!</DialogDescription>
</DialogHeader>
{isError && <AlertBlock type="error">{error?.message}</AlertBlock>}
Expand Down
9 changes: 6 additions & 3 deletions apps/dokploy/components/dashboard/projects/show.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,12 @@ export const ShowProjects = () => {
Create and manage your projects
</CardDescription>
</CardHeader>
<div className="">
<HandleProject />
</div>

{(auth?.rol === "admin" || user?.canCreateProjects) && (
<div className="">
<HandleProject />
</div>
)}
</div>

<CardContent className="space-y-2 py-8 border-t gap-4 flex flex-col min-h-[60vh]">
Expand Down
Loading
Loading