web: remove console.log() from ak-license-notice
This commit is contained in:
parent
66fa4e3085
commit
ce90900bcd
|
@ -14,7 +14,6 @@ export class AkLicenceNotice extends AKElement {
|
||||||
hasLicense = false;
|
hasLicense = false;
|
||||||
|
|
||||||
constructor() {
|
constructor() {
|
||||||
console.log("Notice constructed");
|
|
||||||
super();
|
super();
|
||||||
new EnterpriseApi(DEFAULT_CONFIG).enterpriseLicenseSummaryRetrieve().then((enterprise) => {
|
new EnterpriseApi(DEFAULT_CONFIG).enterpriseLicenseSummaryRetrieve().then((enterprise) => {
|
||||||
this.hasLicense = enterprise.hasLicense;
|
this.hasLicense = enterprise.hasLicense;
|
||||||
|
@ -22,7 +21,6 @@ export class AkLicenceNotice extends AKElement {
|
||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
console.log(this.hasLicense);
|
|
||||||
return this.hasLicense
|
return this.hasLicense
|
||||||
? nothing
|
? nothing
|
||||||
: html`
|
: html`
|
||||||
|
|
Reference in New Issue