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 325eaa4ed79ad93a2d454dfbe67eb930c3d1e431..94f2117a5e6498a1234e130d54c39cc4b0d2b192 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
@@ -101,8 +101,7 @@ export class CloudConfigurationComponent implements OnInit {
     this.parent.dataManager.getMetaData().subscribe((value)=>{
       this.countPerWeight = value.countPerWeight;
       this.parseArrayToJsonWeightClasses();
-      
-    })
+    });
     this.extendedView = false;
     this.cleanUpView = false;
     this.automaticSpelling = true;
@@ -128,8 +127,7 @@ export class CloudConfigurationComponent implements OnInit {
     this.cloudParameters.cloudWeightSettings.forEach((element, i) => {
        this.weightClasses[i].tagColor = element.color;
        this.weightClasses[i].actualTagNumber = this.countPerWeight[i];
-        this.weightClasses[i].rotationAngle = element.rotation;
-
+       this.weightClasses[i].rotationAngle = element.rotation;
     });
   }
 
@@ -141,7 +139,6 @@ export class CloudConfigurationComponent implements OnInit {
     });
   }
 
-
   valueChanged() {
     this.parseJsonToArrayWeightClasses();
     this.parent.setCloudParameters(this.cloudParameters, false);
@@ -179,5 +176,4 @@ export class CloudConfigurationComponent implements OnInit {
     this.valueChanged();
   }
 
-
 }