Skip to content

Commit

Permalink
Fix lint errror in ExecuteButton.js
Browse files Browse the repository at this point in the history
Travis is currently complaining about this ([example build](https://travis-ci.org/graphql/graphiql/builds/181706048)).
  • Loading branch information
wincent committed Dec 8, 2016
1 parent 95305a3 commit 1eeb36c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ExecuteButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export class ExecuteButton extends React.Component {

const pathJSX = this.props.isRunning ?
<path d="M 10 10 L 23 10 L 23 23 L 10 23 z" /> :
<path d="M 11 9 L 24 16 L 11 23 z" />;
<path d="M 11 9 L 24 16 L 11 23 z" />;

return (
<div className="execute-button-wrap">
Expand Down

0 comments on commit 1eeb36c

Please sign in to comment.