Merge pull request #2621 from alecmerdler/fix-status-service
Fix JS StatusService Error
This commit is contained in:
commit
b21af5c1b8
1 changed files with 3 additions and 1 deletions
|
@ -3,7 +3,9 @@
|
|||
*/
|
||||
angular.module('quay').factory('StatusService', ['Features', function(Features) {
|
||||
if (!Features.BILLING) {
|
||||
return;
|
||||
return {
|
||||
getStatus: function(callback) {}
|
||||
};
|
||||
}
|
||||
|
||||
var STATUSPAGE_PAGE_ID = '8szqd6w4s277';
|
||||
|
|
Reference in a new issue