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 2cf4c3c commit 0d6deffCopy full SHA for 0d6deff
src/components/SecuritySchemes/SecuritySchemes.tsx
@@ -60,7 +60,7 @@ export class OAuthFlow extends React.PureComponent<OAuthFlowProps> {
60
<ul>
61
{Object.keys(flow!.scopes).map(scope => (
62
<li key={scope}>
63
- <code>{scope}</code> - {flow!.scopes[scope]}
+ <code>{scope}</code> - <Markdown inline={true} source={flow!.scopes[scope] || ''} />
64
</li>
65
))}
66
</ul>
0 commit comments