diff --git a/src/components/repository-list/list-item/index.js b/src/components/repository-list/list-item/index.js index 2efc744..73ba607 100644 --- a/src/components/repository-list/list-item/index.js +++ b/src/components/repository-list/list-item/index.js @@ -1,6 +1,6 @@ import React from 'react'; import PropTypes from 'prop-types'; -import GithubColors from 'github-colors'; +import GithubColors from 'github-colors'; import './styles.css'; import moment from 'moment'; @@ -11,21 +11,20 @@ import Issue from "../../icons/issue"; class ListItem extends React.Component { render() { const languageColor = GithubColors.get(this.props.repository.language); - return (
Built by · { this.props.repository.owner.login } · { moment(this.props.repository.created_at).format('MMMM D YYYY') }
+Built by · {this.props.repository.owner.login} · {moment(this.props.repository.created_at).format('MMMM D YYYY')}
{ this.props.repository.description || 'No description given.' }
+{this.props.repository.description || 'No description given.' }