Skip to content

Commit

Permalink
Fix #125.
Browse files Browse the repository at this point in the history
  • Loading branch information
aroc committed Jun 30, 2016
1 parent cdd6bf1 commit 9b28b3e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion client/js/app/components/common/filter_manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ var FilterManager = React.createClass({
if (!_.isNull(name.match('coordinates'))) {
var coordinateIndex = parseInt(name.split('.')[1]);
updates.property_value.coordinates[coordinateIndex] = FilterUtils.coerceGeoValue(value);
} else if (name === 'property_value' && updates.coercion_type === 'Geo') {
} else if (name === 'max_distance_miles' && updates.coercion_type === 'Geo') {
updates.property_value[name] = FilterUtils.coerceGeoValue(value);
} else {
updates[name] = value;
Expand Down
4 changes: 2 additions & 2 deletions dist/keen-explorer.js

Large diffs are not rendered by default.

0 comments on commit 9b28b3e

Please sign in to comment.