Removed debugger

This commit is contained in:
Rajnikant Lodhi 2022-07-21 17:56:08 +05:30
parent 974e17395b
commit 20fe475791
6 changed files with 1 additions and 6 deletions

View File

@ -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 ) {

View File

@ -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>

View File

@ -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) => {},

View File

@ -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');
});

View File

@ -951,7 +951,6 @@ export class ProjectMapComponent implements OnInit, OnDestroy {
}
importProject() {
debugger
let uuid: string = '';
const dialogRef = this.dialog.open(ImportProjectDialogComponent, {
width: '400px',

View File

@ -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`, {});
}