fix: hotfix, crash after 2.1 release

This commit is contained in:
Roman Hotsiy 2023-08-18 06:54:16 +10:00
parent ae74ef95c3
commit 9e14e1484c

View File

@ -393,7 +393,7 @@ export function getSerializedValue(field: FieldModel, example: any) {
// decode for better readability in examples: see https://github.com/Redocly/redoc/issues/1138 // decode for better readability in examples: see https://github.com/Redocly/redoc/issues/1138
return decodeURIComponent(serializeParameterValue(field, example)); return decodeURIComponent(serializeParameterValue(field, example));
} else { } else {
return example; return String(example);
} }
} }