mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
stop propagation
This commit is contained in:
@@ -110,7 +110,6 @@ export const ShowProjects = () => {
|
|||||||
className="space-x-4 text-xs cursor-pointer justify-between"
|
className="space-x-4 text-xs cursor-pointer justify-between"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
href={`${domain.https ? "https" : "http"}://${domain.host}${domain.path}`}
|
href={`${domain.https ? "https" : "http"}://${domain.host}${domain.path}`}
|
||||||
onClick={(e) => e.stopPropagation()}
|
|
||||||
>
|
>
|
||||||
<span>{domain.host}</span>
|
<span>{domain.host}</span>
|
||||||
<ExternalLink className="size-4 shrink-0" />
|
<ExternalLink className="size-4 shrink-0" />
|
||||||
@@ -138,7 +137,10 @@ export const ShowProjects = () => {
|
|||||||
<ExternalLinkIcon className="size-3.5" />
|
<ExternalLinkIcon className="size-3.5" />
|
||||||
</Button>
|
</Button>
|
||||||
</DropdownMenuTrigger>
|
</DropdownMenuTrigger>
|
||||||
<DropdownMenuContent className="w-[200px] space-y-2">
|
<DropdownMenuContent
|
||||||
|
className="w-[200px] space-y-2"
|
||||||
|
onClick={(e) => e.stopPropagation()}
|
||||||
|
>
|
||||||
{renderDomainsDropdown(project.applications)}
|
{renderDomainsDropdown(project.applications)}
|
||||||
{renderDomainsDropdown(project.compose)}
|
{renderDomainsDropdown(project.compose)}
|
||||||
</DropdownMenuContent>
|
</DropdownMenuContent>
|
||||||
|
|||||||
Reference in New Issue
Block a user