Skip to content

Commit 69f7920

Browse files
committed
Remove console.logs
1 parent 45fc638 commit 69f7920

File tree

1 file changed

+0
-2
lines changed
  • frontend/js/app/nginx/certificates/list

1 file changed

+0
-2
lines changed

frontend/js/app/nginx/certificates/list/item.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,11 @@ module.exports = Mn.View.extend({
4848
return {
4949
canManage: App.Cache.User.canManage('certificates'),
5050
isExpired: function () {
51-
console.log(this);
5251
return moment(this.expires_on).isBefore(moment());
5352
},
5453
dns_providers: dns_providers,
5554
active_domain_names: function () {
5655
const { proxy_hosts = [], redirect_hosts = [], dead_hosts = [] } = this;
57-
console.log(proxy_hosts)
5856
return [...proxy_hosts, ...redirect_hosts, ...dead_hosts].reduce((acc, host) => {
5957
acc.push(...(host.domain_names || []));
6058
return acc;

0 commit comments

Comments
 (0)