diff --git a/src/app/common/uploading-processbar/uploading-processbar.component.ts b/src/app/common/uploading-processbar/uploading-processbar.component.ts index ef545a53..f4fcee46 100644 --- a/src/app/common/uploading-processbar/uploading-processbar.component.ts +++ b/src/app/common/uploading-processbar/uploading-processbar.component.ts @@ -22,7 +22,6 @@ export class UploadingProcessbarComponent implements OnInit { ngOnInit() { this.upload_file_type = this.data.upload_file_type - debugger this.subscription = this._US.currentCount.subscribe((count:number) => { this.uploadProgress = count; if (this.uploadProgress === 100 || this.uploadProgress == null ) { diff --git a/src/app/components/export-portable-project/export-portable-project.component.html b/src/app/components/export-portable-project/export-portable-project.component.html index f232dba0..de20ebe8 100644 --- a/src/app/components/export-portable-project/export-portable-project.component.html +++ b/src/app/components/export-portable-project/export-portable-project.component.html @@ -21,7 +21,7 @@ <mat-form-field class="input-full-width"> <mat-select formControlName="compression" (selectionChange)="selectCompression($event)" required> <mat-option *ngFor="let compressionValue of compression_methods" [value]="compressionValue">{{ - compressionValue.name + compressionValue?.name }}</mat-option> </mat-select> </mat-form-field> diff --git a/src/app/components/project-map/context-menu/actions/start-node-action/start-node-action.component.ts b/src/app/components/project-map/context-menu/actions/start-node-action/start-node-action.component.ts index e46cd6c1..fd735d00 100644 --- a/src/app/components/project-map/context-menu/actions/start-node-action/start-node-action.component.ts +++ b/src/app/components/project-map/context-menu/actions/start-node-action/start-node-action.component.ts @@ -29,7 +29,6 @@ export class StartNodeActionComponent implements OnInit, OnChanges { } startNodes() { - debugger this.nodes.forEach((node) => { this.nodeService.start(this.controller, node).subscribe( (n: Node) => {}, diff --git a/src/app/components/project-map/nodes-menu/nodes-menu.component.ts b/src/app/components/project-map/nodes-menu/nodes-menu.component.ts index 9d82a4de..0d09888a 100644 --- a/src/app/components/project-map/nodes-menu/nodes-menu.component.ts +++ b/src/app/components/project-map/nodes-menu/nodes-menu.component.ts @@ -88,7 +88,6 @@ export class NodesMenuComponent { } resetNodes() { - debugger this.nodeService.resetAllNodes(this.controller, this.project).subscribe(() => { this.toasterService.success('Successfully reset all console connections'); }); diff --git a/src/app/components/project-map/project-map.component.ts b/src/app/components/project-map/project-map.component.ts index bc16f63f..513ead0a 100644 --- a/src/app/components/project-map/project-map.component.ts +++ b/src/app/components/project-map/project-map.component.ts @@ -951,7 +951,6 @@ export class ProjectMapComponent implements OnInit, OnDestroy { } importProject() { - debugger let uuid: string = ''; const dialogRef = this.dialog.open(ImportProjectDialogComponent, { width: '400px', diff --git a/src/app/services/node.service.ts b/src/app/services/node.service.ts index 783e1a25..6f7b059e 100644 --- a/src/app/services/node.service.ts +++ b/src/app/services/node.service.ts @@ -25,7 +25,6 @@ export class NodeService { } start(controller:Controller , node: Node) { - debugger return this.httpServer.post<Node>(controller, `/projects/${node.project_id}/nodes/${node.node_id}/start`, {}); }