diff --git a/apps/webapp/app/components/runs/v3/DeploymentError.tsx b/apps/webapp/app/components/runs/v3/DeploymentError.tsx
index 517f91789b..11ee62dfa3 100644
--- a/apps/webapp/app/components/runs/v3/DeploymentError.tsx
+++ b/apps/webapp/app/components/runs/v3/DeploymentError.tsx
@@ -9,7 +9,7 @@ type DeploymentErrorProps = {
export function DeploymentError({ errorData }: DeploymentErrorProps) {
return (
-
+
{errorData.message && {errorData.message}}
{errorData.stack && (
@@ -18,6 +18,7 @@ export function DeploymentError({ errorData }: DeploymentErrorProps) {
showLineNumbers={false}
code={errorData.stack}
maxLines={20}
+ showTextWrapping
/>
)}
{errorData.stderr && (
@@ -28,6 +29,7 @@ export function DeploymentError({ errorData }: DeploymentErrorProps) {
showLineNumbers={false}
code={errorData.stderr}
maxLines={20}
+ showTextWrapping
/>
>
)}
diff --git a/apps/webapp/app/components/runs/v3/PacketDisplay.tsx b/apps/webapp/app/components/runs/v3/PacketDisplay.tsx
index 5d5878a93d..ee1d98b18d 100644
--- a/apps/webapp/app/components/runs/v3/PacketDisplay.tsx
+++ b/apps/webapp/app/components/runs/v3/PacketDisplay.tsx
@@ -33,6 +33,7 @@ export function PacketDisplay({
code={data}
maxLines={20}
showLineNumbers={false}
+ showTextWrapping
/>
);
}
diff --git a/apps/webapp/app/routes/resources.orgs.$organizationSlug.projects.$projectParam.env.$envParam.runs.$runParam.spans.$spanParam/route.tsx b/apps/webapp/app/routes/resources.orgs.$organizationSlug.projects.$projectParam.env.$envParam.runs.$runParam.spans.$spanParam/route.tsx
index 7158c57b01..d0be26a4b3 100644
--- a/apps/webapp/app/routes/resources.orgs.$organizationSlug.projects.$projectParam.env.$envParam.runs.$runParam.spans.$spanParam/route.tsx
+++ b/apps/webapp/app/routes/resources.orgs.$organizationSlug.projects.$projectParam.env.$envParam.runs.$runParam.spans.$spanParam/route.tsx
@@ -753,12 +753,12 @@ function RunBody({
) : tab === "context" ? (
-
+
) : tab === "metadata" ? (
{run.metadata ? (
-
+
) : (
No metadata set for this run. View our metadata documentation to learn more.