Fix typo (lenght) in index controller

This commit is contained in:
Andrew Hart 2014-10-26 10:31:41 -07:00
parent 0b255f5f32
commit 7698739215
1 changed files with 1 additions and 1 deletions

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;
});
};