Skip to content

Commit 59ee73f

Browse files
authored
fix: displaying json example when showObjectSchemaExamples enabled (#2635)
1 parent d614d2d commit 59ee73f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/openapi.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ export function getSerializedValue(field: FieldModel, example: any) {
393393
// decode for better readability in examples: see https://github.com/Redocly/redoc/issues/1138
394394
return decodeURIComponent(serializeParameterValue(field, example));
395395
} else {
396-
return String(example);
396+
return typeof example === 'object' ? example : String(example);
397397
}
398398
}
399399

0 commit comments

Comments
 (0)