diff --git a/src/app/components/shared/_dialogs/cloud-configuration/cloud-configuration.component.ts b/src/app/components/shared/_dialogs/cloud-configuration/cloud-configuration.component.ts
index b293f81ea403fae6784ffaa5116f76c0c8263df5..73867bbbbd8e26a8415cca9ff482fd6640cc5594 100644
--- a/src/app/components/shared/_dialogs/cloud-configuration/cloud-configuration.component.ts
+++ b/src/app/components/shared/_dialogs/cloud-configuration/cloud-configuration.component.ts
@@ -143,22 +143,20 @@ export class CloudConfigurationComponent implements OnInit {
   valueChanged() {
     this.parseJsonToArrayWeightClasses();
     this.parent.setCloudParameters(this.cloudParameters, false);
-    console.log(this.cloudParameters);
-    
   }
 
   cancel() {
     this.parent.tagCloudDataManager.demoActive = false;
     this.parent.setCloudParameters(this.defaultCloudParameters);
     this.parent.configurationOpen = false;
-    this.setStep(0)
+    this.setStep(0);
 
   }
 
   save() {
     this.parent.tagCloudDataManager.demoActive = false;
     this.parent.setCloudParameters(this.cloudParameters);
-    this.parent.configurationOpen = false;    
+    this.parent.configurationOpen = false;
    this.setStep(0)
 
   }
@@ -202,8 +200,6 @@ export class CloudConfigurationComponent implements OnInit {
   }
 
   italicChecked(event){
-    console.log(event.checked);
-    
     event.checked == true ? this.cloudParameters.fontStyle = "italic" : this.cloudParameters.fontStyle = "normal";
     this.valueChanged();
   }