Skip to content

Commit

Permalink
fix: wrap in an li the checkbox
Browse files Browse the repository at this point in the history
  • Loading branch information
vvo committed Sep 2, 2015
1 parent 5318572 commit dfe629d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/MultipleChoiceList/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class MultipleChoiceList extends React.Component {
return (
<ul>
{facetValues.map(function(facetValue) {
return <Template key={facetValue.name} data={facetValue} template={template} />;
return <li key={facetValue.name}><Template data={facetValue} template={template} /></li>;
})}
</ul>
);
Expand All @@ -23,7 +23,7 @@ MultipleChoiceList.propTypes = {
React.PropTypes.string,
React.PropTypes.func
]).isRequired,
toggleRefine: React.PropTypes.fn
toggleRefine: React.PropTypes.func
};

module.exports = MultipleChoiceList;

0 comments on commit dfe629d

Please sign in to comment.