From d027af44adeabd2f8140dfe751aa1ce04f1f1804 Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Tue, 3 Dec 2013 17:43:39 -0500 Subject: [PATCH 1/2] Fix wrapping bug when adding robots via the entity search --- static/css/quay.css | 1 + 1 file changed, 1 insertion(+) diff --git a/static/css/quay.css b/static/css/quay.css index f8ac3943a..21b3d3f1c 100644 --- a/static/css/quay.css +++ b/static/css/quay.css @@ -884,6 +884,7 @@ form input.ng-valid.ng-dirty, .entity-mini-listing { margin: 2px; + white-space: nowrap !important; } .entity-mini-listing i { From fc7d319c7c637f6620fd1edbe8697577a07bd287 Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Tue, 3 Dec 2013 17:44:51 -0500 Subject: [PATCH 2/2] 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;