set ready when users got loaded

This commit is contained in:
Girish Ramakrishnan
2016-09-27 19:20:28 -07:00
parent 9111174b50
commit 7d5dfb64eb

View File

@@ -378,6 +378,8 @@ angular.module('Application').controller('UsersController', ['$scope', '$locatio
if (error) return console.error('Unable to get user listing.', error);
$scope.users = result;
$scope.ready = true;
});
});
}