Skip to content

Commit

Permalink
fix: adds proper word wrap
Browse files Browse the repository at this point in the history
  • Loading branch information
akoenig committed Apr 6, 2024
1 parent 84eba0e commit aef1a69
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/components/workflow-detail-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,9 @@ function Instructions({ workflow }: Props) {
<h3 className="font-bold text-md text-primary">Install</h3>

<div className="text-sm rounded-lg border flex flex-col lg:flex-row justify-between items-center gap-4 px-4 py-2">
<pre className="whitespace-pre-line">{workflow.installCommand}</pre>
<pre className="whitespace-pre-line break-all">
{workflow.installCommand}
</pre>

<div className="flex gap-2">
<CopyIcon
Expand Down

0 comments on commit aef1a69

Please sign in to comment.