Skip to content

Commit

Permalink
Merge pull request #2813 from cesarkohl/patch-3
Browse files Browse the repository at this point in the history
fix: replace double negation with true
  • Loading branch information
jasonbahl committed Jun 2, 2023
2 parents 8e24322 + e9260d8 commit a89782c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -443,7 +443,7 @@ const AbstractArgView = (props) => {
>
{isInputObjectType(argType) ? (
<span>
{!!argValue
{argValue
? props.styleConfig.arrowOpen
: props.styleConfig.arrowClosed}
</span>
Expand Down

0 comments on commit a89782c

Please sign in to comment.