We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45fc638 commit 69f7920Copy full SHA for 69f7920
frontend/js/app/nginx/certificates/list/item.js
@@ -48,13 +48,11 @@ module.exports = Mn.View.extend({
48
return {
49
canManage: App.Cache.User.canManage('certificates'),
50
isExpired: function () {
51
- console.log(this);
52
return moment(this.expires_on).isBefore(moment());
53
},
54
dns_providers: dns_providers,
55
active_domain_names: function () {
56
const { proxy_hosts = [], redirect_hosts = [], dead_hosts = [] } = this;
57
- console.log(proxy_hosts)
58
return [...proxy_hosts, ...redirect_hosts, ...dead_hosts].reduce((acc, host) => {
59
acc.push(...(host.domain_names || []));
60
return acc;
0 commit comments