Skip to content

Commit

Permalink
Fix broken tracing UI (graphql#723)
Browse files Browse the repository at this point in the history
- missing prop was preventing rendering of tracing results
- Message "Please re-run the query to show tracing results." was shown even though results were available
  • Loading branch information
PavelGavlik authored and huv1k committed Jun 5, 2018
1 parent 366f9dd commit 404b48c
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -11,7 +11,7 @@ import { connect } from 'react-redux'

import Spinner from '../Spinner'
import Results from './Results'
import ReponseTracing from './ResponseTracing'
import ResponseTracing from './ResponseTracing'
import withTheme from '../Theme/withTheme'
import { LocalThemeInterface } from '../Theme'
import GraphDocs from './DocExplorer/GraphDocs'
Expand Down Expand Up @@ -315,7 +315,7 @@ class GraphQLEditor extends React.PureComponent<
>
Tracing
</ResponseTrackingTitle>
<ReponseTracing />
<ResponseTracing open={this.props.responseTracingOpen} />
</ResponseTracking>
</ResultWrap>
</EditorBar>
Expand Down

0 comments on commit 404b48c

Please sign in to comment.