We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a34d7d3 commit aa9cf56Copy full SHA for aa9cf56
src/core/plugins/oas31/components/info.jsx
@@ -35,8 +35,10 @@ const Info = ({ getComponent, specSelectors }) => {
35
<hgroup className="main">
36
<h2 className="title">
37
{title}
38
- {version && <VersionStamp version={version} />}
39
- <OpenAPIVersion oasVersion="3.1" />
+ <span>
+ {version && <VersionStamp version={version} />}
40
+ <OpenAPIVersion oasVersion="3.1" />
41
+ </span>
42
</h2>
43
44
{(host || basePath) && <InfoBasePath host={host} basePath={basePath} />}
0 commit comments