Skip to content
Snippets Groups Projects
Verified Commit 99a0c123 authored by Alex ORLUC's avatar Alex ORLUC
Browse files

remove conosle.log

parent fa08bdc5
No related branches found
No related tags found
No related merge requests found
...@@ -75,10 +75,10 @@ export class SendmailAdministrationComponent implements OnInit { ...@@ -75,10 +75,10 @@ export class SendmailAdministrationComponent implements OnInit {
this.sendmail = data.configuration.value this.sendmail = data.configuration.value
this.sendmailClone = JSON.parse(JSON.stringify(this.sendmail)); this.sendmailClone = JSON.parse(JSON.stringify(this.sendmail));
this.smtpTypeDesc = this.lang[this.sendmail.type+'Desc']; this.smtpTypeDesc = this.lang[this.sendmail.type+'Desc'];
this.loading = false;
}, (err) => { }, (err) => {
this.notify.handleErrors(err); this.notify.handleErrors(err);
}); });
this.loading = false;
} }
cancelModification() { cancelModification() {
......
...@@ -45,7 +45,6 @@ export class TimeLimitPipe implements PipeTransform, OnDestroy { ...@@ -45,7 +45,6 @@ export class TimeLimitPipe implements PipeTransform, OnDestroy {
let days = Math.round(Math.abs(hours / 24)); let days = Math.round(Math.abs(hours / 24));
let months = Math.round(Math.abs(days/30.416)); let months = Math.round(Math.abs(days/30.416));
let years = Math.round(Math.abs(days/365)); let years = Math.round(Math.abs(days/365));
console.log(value);
if(value == null) { if(value == null) {
return '<span>' + this.lang.undefined + '</span>'; return '<span>' + this.lang.undefined + '</span>';
} else if(now > d) { } else if(now > d) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment