mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
Merge pull request #350 from Vladislav-CS/domain-link-fix
fix: wrong domain link
This commit is contained in:
@@ -71,7 +71,10 @@ export const ShowDomains = ({ applicationId }: Props) => {
|
|||||||
key={item.domainId}
|
key={item.domainId}
|
||||||
className="flex w-full items-center gap-4 max-sm:flex-wrap border p-4 rounded-lg"
|
className="flex w-full items-center gap-4 max-sm:flex-wrap border p-4 rounded-lg"
|
||||||
>
|
>
|
||||||
<Link target="_blank" href={`http://${item.host}`}>
|
<Link
|
||||||
|
target="_blank"
|
||||||
|
href={`${item.https ? "https" : "http"}://${item.host}${item.path}`}
|
||||||
|
>
|
||||||
<ExternalLink className="size-5" />
|
<ExternalLink className="size-5" />
|
||||||
</Link>
|
</Link>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user