docs(customl-layout): append swagger-ui css class (#9329)

To display style properly, we need to add className="swagger-ui"
to the layout.
This commit is contained in:
Yanqi Zong
2023-11-10 05:03:32 -08:00
committed by GitHub
parent 292a288066
commit bb04915809

View File

@@ -21,7 +21,7 @@ class OperationsLayout extends React.Component {
const Operations = getComponent("operations", true) const Operations = getComponent("operations", true)
return ( return (
<div> <div className="swagger-ui">
<Operations /> <Operations />
</div> </div>
) )