Skip to content

Commit

Permalink
Merge pull request #29 from anibali/master
Browse files Browse the repository at this point in the history
Call toString on action type before displaying
  • Loading branch information
gaearon committed Apr 3, 2016
2 parents 3b28fc6 + b132439 commit ed7635e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/LogMonitorEntryAction.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export default class LogMonitorAction extends Component {
}}>
<div style={styles.actionBar}
onClick={this.props.onClick}>
{type}
{type.toString()}
</div>
{!this.props.collapsed ? this.renderPayload(payload) : ''}
</div>
Expand Down

0 comments on commit ed7635e

Please sign in to comment.