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 c8dd1fc commit f42e9cdCopy full SHA for f42e9cd
packages/docusaurus-theme-openapi-docs/src/theme/ApiItem/index.tsx
@@ -152,7 +152,18 @@ export default function ApiItem(props: Props): JSX.Element {
152
<MDXComponent />
153
</div>
154
<div className="col col--5 openapi-right-panel__container">
155
- <BrowserOnly fallback={<div>Loading...</div>}>
+ <BrowserOnly
156
+ fallback={
157
+ <div className="openapi-explorer__loading-container">
158
+ <div className="openapi-response__lds-ring">
159
+ <div></div>
160
161
162
163
+ </div>
164
165
+ }
166
+ >
167
{() => {
168
return <ApiExplorer item={api} infoPath={infoPath} />;
169
}}
0 commit comments