You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(webapp): make the per-page debug panel ID rows copyable too
The custom rows some pages add to the admin debug panel (Run/Deployment
IDs, trace id, env/org ids, image reference, region/branch ids, etc.)
were still plain text. Wrap the opaque identifiers in CopyableText across
those pages so they match the shared rows and can be copied on hover.
Enum/boolean/human-readable rows stay plain (Environment type/paused,
deployment Platform, plan name) and the Build Server link is left as-is.
Also drop a duplicated project ID that rendered twice in the env settings
panel.
Copy file name to clipboardExpand all lines: apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.branches/route.tsx
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -242,7 +242,9 @@ export default function Page() {
Copy file name to clipboardExpand all lines: apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.concurrency/route.tsx
Copy file name to clipboardExpand all lines: apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.deployments.$deploymentParam/route.tsx
+13-4Lines changed: 13 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,7 @@ import { GitMetadata } from "~/components/GitMetadata";
Copy file name to clipboardExpand all lines: apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.dev-branches/route.tsx
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -95,7 +95,9 @@ export default function Page() {
Copy file name to clipboardExpand all lines: apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.runs.$runParam/route.tsx
+12-4Lines changed: 12 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -489,19 +489,27 @@ export default function Page() {
Copy file name to clipboardExpand all lines: apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.settings/route.tsx
+7-6Lines changed: 7 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -2,9 +2,9 @@ import { Outlet, type MetaFunction } from "@remix-run/react";
0 commit comments