parent
3fdadb51b7
commit
8318546447
8 changed files with 233 additions and 18 deletions
|
@ -52,6 +52,7 @@ angular.module('quay').directive('headerBar', function () {
|
|||
};
|
||||
|
||||
$scope.Config = Config;
|
||||
$scope.Features = Features;
|
||||
$scope.notificationService = NotificationService;
|
||||
$scope.searchingAllowed = false;
|
||||
$scope.searchVisible = false;
|
||||
|
@ -161,7 +162,7 @@ angular.module('quay').directive('headerBar', function () {
|
|||
$scope.getEnterpriseLogo = function() {
|
||||
if (!Config.ENTERPRISE_LOGO_URL) {
|
||||
if (Features.BILLING) {
|
||||
return '/static/img/QuayByCoreOS_horizontal_color.svg';
|
||||
return '/static/img/quay-horizontal-whiteblue-nobackground.svg';
|
||||
} else {
|
||||
return '/static/img/QuayEnterprise_horizontal_color.svg'
|
||||
}
|
||||
|
|
Reference in a new issue