From acc495ed0abd2958ba0d5a681ee6c5bb6e62224e Mon Sep 17 00:00:00 2001 From: Frank Kilcommins Date: Mon, 13 Nov 2023 12:06:17 +0000 Subject: [PATCH] feat: show extensions for OpenAPI 2.0/3.0.x (#4566) showExtensions config option was turned on to enable rendering specification extensions in certain components. --- src/App.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/App.jsx b/src/App.jsx index ca79439b1fb..1f8a3d284f8 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -82,6 +82,7 @@ SwaggerEditor.defaultProps = { ...SwaggerUI.defaultProps, layout: 'SwaggerEditorLayout', presets: [SwaggerEditor.presets.default], + showExtensions: true, }; export default SwaggerEditor;