Fixed minor bug in facets of facet-based edit dialog.

git-svn-id: http://google-refine.googlecode.com/svn/trunk@247 7d457c2a-affb-35e4-300a-418c747d4874
This commit is contained in:
David Huynh 2010-03-09 00:41:33 +00:00
parent 4cc1933065
commit af9e9f590b

View File

@ -373,7 +373,7 @@ FacetBasedEditDialog.Facet = function(dialog, title, property, elmt, clusters) {
this._max = max;
if (min >= max) {
this._step = 0;
this._bins = [];
this._baseBins = [];
} else {
var diff = max - min;