Merge pull request #573 from andrewfhart/fix-blocks-length

Fix $scope.blocksLength assignment in index controller
This commit is contained in:
Matias Alejo Garcia 2014-10-26 19:57:07 -03:00
commit adc3f2ade4
2 changed files with 2 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@ -12,7 +12,7 @@ angular.module('insight.system').controller('IndexController',
limit: BLOCKS_DISPLAYED
}, function(res) {
$scope.blocks = res.blocks;
$scope.blocksLength = res.lenght;
$scope.blocksLength = res.length;
});
};