Skip to content

Commit cfadacb

Browse files
authored
Merge pull request #148 from curveball/sk/141/comments-hidden
Comments are not appearing #141
2 parents fb745b3 + d323b62 commit cfadacb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/json-viewer.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ function renderCollapsableRow(key: string, value: JsonValue, isLast: boolean, js
9595
<span className="hljs-punctuation"> <em>{Object.keys(value).length} properties</em> {'}'}</span>
9696
</span>
9797
</summary>
98-
{renderJsonObject(value, true)}
98+
{renderJsonObject(value, true, jsonSchema)}
9999
{isLast ? null : <span className="hljs-punctuation">,</span>}
100100
</details></li>
101101
</React.Fragment>;
@@ -107,7 +107,7 @@ function renderCollapsableRow(key: string, value: JsonValue, isLast: boolean, js
107107
<span className="hljs-attr">{key}</span>
108108
<span className="hidden-copy-paste">"</span>
109109
<span className="hljs-punctuation">: </span>
110-
{renderJsonValue(value, isLikelyAUri(key))}
110+
{renderJsonValue(value, isLikelyAUri(key), jsonSchema)}
111111
{isLast ? null : <span className="hljs-punctuation">,</span>}
112112
</li>
113113
</React.Fragment>;

0 commit comments

Comments
 (0)