Skip to content

Commit

Permalink
fix(FieldFormatters): force-wrap long preview lines
Browse files Browse the repository at this point in the history
  • Loading branch information
maxpatiiuk committed Jan 27, 2025
1 parent b95c145 commit c8acc26
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,9 @@ export function useResourcePreview(
setResources(removeItem(resources, index)),
}}
/>
<output className="whitespace-pre-wrap">{output}</output>
<output className="whitespace-pre-wrap break-all">
{output}
</output>
</div>
);
})
Expand Down

0 comments on commit c8acc26

Please sign in to comment.