From fc7d319c7c637f6620fd1edbe8697577a07bd287 Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Tue, 3 Dec 2013 17:44:51 -0500 Subject: [PATCH] Fix reference error on the team view page --- static/js/controllers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/controllers.js b/static/js/controllers.js index 26813c3b9..85e9278a7 100644 --- a/static/js/controllers.js +++ b/static/js/controllers.js @@ -1287,7 +1287,7 @@ function TeamViewCtrl($rootScope, $scope, Restangular, $routeParams) { $scope.canEditMembers = resp.can_edit; $scope.loading = !$scope.organization || !$scope.members; $rootScope.title = teamname + ' (' + $scope.orgname + ')'; - $rootScope.description = 'Team management page for team ' + teamname + ' under organization ' + orgname; + $rootScope.description = 'Team management page for team ' + teamname + ' under organization ' + $scope.orgname; }, function() { $scope.organization = null; $scope.members = null;