Update naming of optional parameter
This commit is contained in:
parent
84ad1d83e1
commit
7b28f745f7
1 changed files with 3 additions and 3 deletions
|
@ -71,10 +71,10 @@ angular.module('quay').factory('Config', ['Features', function(Features) {
|
|||
return value;
|
||||
};
|
||||
|
||||
config.getEnterpriseLogo = function(defaultValue) {
|
||||
config.getEnterpriseLogo = function(opt_defaultValue) {
|
||||
if (!config.ENTERPRISE_LOGO_URL) {
|
||||
if (defaultValue) {
|
||||
return defaultValue;
|
||||
if (opt_defaultValue) {
|
||||
return opt_defaultValue;
|
||||
}
|
||||
|
||||
if (Features.BILLING) {
|
||||
|
|
Reference in a new issue