Skip to content

Commit 792c973

Browse files
authored
Force-wrap long strings in the run error callout (#2340)
1 parent 0fc234b commit 792c973

File tree

1 file changed

+1
-1
lines changed
  • apps/webapp/app/routes/resources.orgs.$organizationSlug.projects.$projectParam.env.$envParam.runs.$runParam.spans.$spanParam

1 file changed

+1
-1
lines changed

apps/webapp/app/routes/resources.orgs.$organizationSlug.projects.$projectParam.env.$envParam.runs.$runParam.spans.$spanParam/route.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -855,7 +855,7 @@ function RunError({ error }: { error: TaskRunError }) {
855855
<Header3 className="text-rose-500">{name}</Header3>
856856
{enhancedError.message && (
857857
<Callout variant="error">
858-
<pre className="text-wrap font-sans text-sm font-normal text-rose-200">
858+
<pre className="text-wrap font-sans text-sm font-normal text-rose-200 [word-break:break-word]">
859859
{enhancedError.message}
860860
</pre>
861861
</Callout>

0 commit comments

Comments
 (0)