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;
|
return value;
|
||||||
};
|
};
|
||||||
|
|
||||||
config.getEnterpriseLogo = function(defaultValue) {
|
config.getEnterpriseLogo = function(opt_defaultValue) {
|
||||||
if (!config.ENTERPRISE_LOGO_URL) {
|
if (!config.ENTERPRISE_LOGO_URL) {
|
||||||
if (defaultValue) {
|
if (opt_defaultValue) {
|
||||||
return defaultValue;
|
return opt_defaultValue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Features.BILLING) {
|
if (Features.BILLING) {
|
||||||
|
|
Reference in a new issue