Skip to content

Commit

Permalink
fix: Escape json references (#4651)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyle-ssg authored Sep 23, 2024
1 parent 24ce3bd commit 2780aa8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/web/components/JSONReference.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ const JSONReference: FC<JSONReferenceType> = ({
</Button>
</Row>
<div className='hljs-container'>
<Highlight forceExpanded preventEscape className={'json p-0'}>
<Highlight forceExpanded className={'json p-0'}>
{condensed ? idsOnly : value}
</Highlight>
</div>
Expand Down

0 comments on commit 2780aa8

Please sign in to comment.