Commit fc069a04 by bobrik

Fixed default color on dashboard load

parent fd0b1986
......@@ -51,7 +51,7 @@ function (angular, _, config) {
// Check each query object, populate its defaults
_.each(self.list,function(query,id) {
_.defaults(query,_query);
query.color = colorAt(id);
query.color = query.color || colorAt(id);
});
if (self.ids.length === 0) {
......
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