From 3a671c61d3efe8beddf3ff3ae180bae39c4870c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Gorej?= Date: Fri, 19 Apr 2024 08:28:30 +0200 Subject: [PATCH] fix(swagger-ui-react): avoid triggering implicit system rendering (#9847) Refs #9846 --- flavors/swagger-ui-react/index.jsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/flavors/swagger-ui-react/index.jsx b/flavors/swagger-ui-react/index.jsx index eeb687d0..1080ca97 100644 --- a/flavors/swagger-ui-react/index.jsx +++ b/flavors/swagger-ui-react/index.jsx @@ -14,6 +14,8 @@ class SwaggerUI extends React.Component { plugins: this.props.plugins, spec: this.props.spec, url: this.props.url, + dom_id: null, + domNode: null, layout: this.props.layout, defaultModelsExpandDepth: this.props.defaultModelsExpandDepth, defaultModelRendering: this.props.defaultModelRendering,