Skip to content

Commit

Permalink
docs(core): Fix the '>' position when rendering multiline commands
Browse files Browse the repository at this point in the history
  • Loading branch information
ndcunningham committed Apr 26, 2024
1 parent 9bf197f commit 47301a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nx-dev/ui-fence/src/lib/fences/terminal-output.tsx
Expand Up @@ -17,7 +17,7 @@ export function TerminalOutput({
<div className="items-left flex flex-col">
{commandLines.map((line, index) => {
return (
<div key={index} className="flex items-center">
<div key={index} className="flex">
<p className="mt-0.5">
{path && (
<span className="text-purple-600 dark:text-fuchsia-500">
Expand Down

0 comments on commit 47301a5

Please sign in to comment.