Browse Source

Merge remote-tracking branch 'bobrik/color-loading-fix' into pulls

Rashid Khan 12 years ago
parent
commit
e23d733805
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/app/services/querySrv.js

+ 1 - 1
src/app/services/querySrv.js

@@ -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) {