Skip to content
This repository has been archived by the owner on Nov 28, 2022. It is now read-only.

Commit

Permalink
fix: Params before logs (#483)
Browse files Browse the repository at this point in the history
  • Loading branch information
gkoberger authored Feb 20, 2020
1 parent bea9a00 commit a6a8a43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/api-explorer/src/Doc.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ class Doc extends React.Component {

<div className="hub-reference-section">
<div className="hub-reference-left">
{this.renderLogs()}
{this.renderParams()}
{this.renderLogs()}
</div>
<div className="hub-reference-right switcher">{this.renderResponseSchema()}</div>
</div>
Expand All @@ -155,8 +155,8 @@ class Doc extends React.Component {
{doc.type === 'endpoint' && (
<React.Fragment>
{this.renderPathUrl()}
{this.renderLogs()}
{this.renderParams()}
{this.renderLogs()}
</React.Fragment>
)}

Expand Down

0 comments on commit a6a8a43

Please sign in to comment.