Skip to content

Commit

Permalink
fix(): JSLint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
rcdexta committed Nov 10, 2016
1 parent c00348d commit ec955f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/TimelineEvent.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ import s from './styles'
class TimelineEvent extends Component {

mergeNotificationStyle (iconColor) {
return iconColor ? {...s.eventType, ...{color: iconColor, borderColor: iconColor}} : s.eventType;
return iconColor ? {...s.eventType, ...{color: iconColor, borderColor: iconColor}} : s.eventType
}

mergeContentStyle (contentStyle) {
return contentStyle ? {...s.message, ...contentStyle} : s.message;
return contentStyle ? {...s.message, ...contentStyle} : s.message
}

render () {
Expand Down

0 comments on commit ec955f3

Please sign in to comment.