Skip to content

Commit

Permalink
fix(graph): correct value when inputs/outputs are copied (#21245)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaysoo authored Jan 19, 2024
1 parent b97037e commit 2e2dada
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,9 @@ export function TargetConfigurationDetails({
<CopyToClipboard
onCopy={() =>
handleCopyClick(
`"inputs": JSON.stringify(targetConfiguration.inputs)`
`"inputs": ${JSON.stringify(
targetConfiguration.inputs
)}`
)
}
/>
Expand Down Expand Up @@ -345,7 +347,7 @@ export function TargetConfigurationDetails({
<CopyToClipboard
onCopy={() =>
handleCopyClick(
`"ouputs": ${JSON.stringify(
`"outputs": ${JSON.stringify(
targetConfiguration.outputs
)}`
)
Expand Down

0 comments on commit 2e2dada

Please sign in to comment.