Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
rcdexta committed Mar 3, 2018
1 parent 9699edc commit a4458ff
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions components/TimelineBlip.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class TimelineBlip extends Component {

render() {
const {title, iconStyle, icon, orientation, iconColor, style, ...otherProps} = this.props
const leftOrRightEvent = (orientation === 'right') ? {...s['event--right']} : {...s['event--left']}
const leftOrRightEvent = (orientation === 'right') ? {...s['event--right']} : {...s['event--left']}
return (
<div style={{...s.event, marginBottom: 50, ...style}}>
<div style={this.mergeNotificationStyle(iconColor)}>
Expand All @@ -33,7 +33,8 @@ TimelineBlip.propTypes = {
icon: PropTypes.node,
iconColor: PropTypes.string,
iconStyle: PropTypes.object,
style: PropTypes.object
style: PropTypes.object,
orientation: PropTypes.string
}

TimelineBlip.defaultProps = {
Expand Down

0 comments on commit a4458ff

Please sign in to comment.