Commit e12febe7 authored by Alexander.Trofimov's avatar Alexander.Trofimov

fix top 10 bug with rules

parent 57256105
......@@ -2960,7 +2960,7 @@
return function(row, col) {
var cell = t._getCellNoEmpty(row, col);
var val = cell ? cell.getNumberValue() : null;
return (null !== val && (oRule.bottom ? val <= threshold : val >= threshold)) ? rule.dxf : null;
return (null !== val && (rule.bottom ? val <= threshold : val >= threshold)) ? rule.dxf : null;
};
})(oRule, threshold);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment