mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2024-12-20 13:33:06 +00:00
Removed debugger
This commit is contained in:
parent
974e17395b
commit
20fe475791
@ -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 ) {
|
||||
|
@ -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>
|
||||
|
@ -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) => {},
|
||||
|
@ -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');
|
||||
});
|
||||
|
@ -951,7 +951,6 @@ export class ProjectMapComponent implements OnInit, OnDestroy {
|
||||
}
|
||||
|
||||
importProject() {
|
||||
debugger
|
||||
let uuid: string = '';
|
||||
const dialogRef = this.dialog.open(ImportProjectDialogComponent, {
|
||||
width: '400px',
|
||||
|
@ -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`, {});
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user