Skip to content

Commit

Permalink
fixed lints
Browse files Browse the repository at this point in the history
  • Loading branch information
daneryl committed Jun 7, 2017
1 parent b8fc3cc commit 849e226
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/react/Library/components/FiltersForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export class FiltersForm extends Component {
})()}

<Form model={model} id="filtersForm" onSubmit={this.submit.bind(this)} onChange={this.onChange.bind(this)}>
{fields.map((property, index) => {
{fields.map((property) => {
let propertyClass = property.active ? 'search__filter is-active' : 'search__filter';
if (property.type === 'select' || property.type === 'multiselect') {
return (
Expand Down

0 comments on commit 849e226

Please sign in to comment.