Skip to content

Commit 55b8936

Browse files
committed
Fix current badge inconsistency in the deployment details page
1 parent a3ef6ea commit 55b8936

File tree

1 file changed

+5
-1
lines changed
  • apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.deployments.$deploymentParam

1 file changed

+5
-1
lines changed

apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.deployments.$deploymentParam/route.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,11 @@ export default function Page() {
132132
<Property.Label>Deploy</Property.Label>
133133
<Property.Value className="flex items-center gap-2">
134134
<span>{deployment.shortCode}</span>
135-
{deployment.label && <Badge variant="outline-rounded">{deployment.label}</Badge>}
135+
{deployment.label && (
136+
<Badge variant="extra-small" className="capitalize">
137+
{deployment.label}
138+
</Badge>
139+
)}
136140
</Property.Value>
137141
</Property.Item>
138142
<Property.Item>

0 commit comments

Comments
 (0)