Skip to content

Commit

Permalink
fix(graph): copy command text directly from PDV (#29645)
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxKless authored Jan 17, 2025
1 parent bb03ed7 commit 37f994a
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,7 @@ export function TargetExecutorTitle({
<span className="font-medium">
Command
<span className="mb-1 ml-2 hidden group-hover:inline">
<CopyToClipboardButton
text={`"command": "${command}"`}
tooltipText="Copy Command"
/>
<CopyToClipboardButton text={command} tooltipText="Copy Command" />
</span>
</span>
);
Expand Down

0 comments on commit 37f994a

Please sign in to comment.