Skip to content

Commit

Permalink
Merge pull request #148 from partio-scout/bugfix/empty-filter
Browse files Browse the repository at this point in the history
Add empty option back to filters
  • Loading branch information
pompost authored Jul 20, 2016
2 parents 3a5db8b + f40a7bd commit fcf4350
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/actions/SearchFilterActions.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export function getSearchFilterActions(alt, searchFilterResource, participantRes
if (x[property]) {
x[property].push(response[i].value);
} else {
x[property] = [];
x[property] = [''];
x[property].push(response[i].value);
}
}
Expand Down

0 comments on commit fcf4350

Please sign in to comment.