Merge pull request #3683 from Dokploy/3667-dokploy-update-from-ui-doesnt-work-but-states-success

fix(update-server): display release tag conditionally in server versi…
This commit is contained in:
Mauricio Siu
2026-02-10 18:43:22 -06:00
committed by GitHub

View File

@@ -135,7 +135,9 @@ export const UpdateServer = ({
<div className="flex items-center gap-1.5 rounded-full px-3 py-1 mr-2 bg-muted">
<Server className="h-4 w-4 text-muted-foreground" />
<span className="text-sm text-muted-foreground">
{dokployVersion} | {releaseTag}
{dokployVersion}{" "}
{(releaseTag === "canary" || releaseTag === "feature") &&
`(${releaseTag})`}
</span>
</div>
)}