merge conflict fix & bump version

This commit is contained in:
Arik Fraimovich 2014-03-03 20:27:04 +02:00
parent 3f79189410
commit 5d19096e0c
2 changed files with 2 additions and 2 deletions

View File

@ -211,7 +211,7 @@
};
if (scope.series.length > 0 && _.some(scope.series[0].data, function (p) {
return angular.isString(p.x)
return angular.isString(p.x) || angular.isDefined(p.name));
})) {
scope.chart.xAxis[0].update({type: 'category'});

View File

@ -8,7 +8,7 @@ import redis
from statsd import StatsClient
from redash import settings, utils
__version__ = '0.3.3'
__version__ = '0.3.5'
app = Flask(__name__,
template_folder=settings.STATIC_ASSETS_PATH,