mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-06-21 16:09:55 +00:00
Editing projects updated
This commit is contained in:
@ -34,6 +34,10 @@
|
|||||||
Leave this project running in the background after closing
|
Leave this project running in the background after closing
|
||||||
</mat-checkbox>
|
</mat-checkbox>
|
||||||
|
|
||||||
|
<mat-checkbox [ngModelOptions]="{standalone: true}" [(ngModel)]="project.show_interface_labels">
|
||||||
|
Show interface labels at start
|
||||||
|
</mat-checkbox>
|
||||||
|
|
||||||
<div mat-dialog-actions>
|
<div mat-dialog-actions>
|
||||||
<button mat-button (click)="onNoClick()" color="accent">Cancel</button>
|
<button mat-button (click)="onNoClick()" color="accent">Cancel</button>
|
||||||
<button mat-button (click)="onYesClick()" tabindex="2" mat-raised-button color="primary">Apply</button>
|
<button mat-button (click)="onYesClick()" tabindex="2" mat-raised-button color="primary">Apply</button>
|
||||||
|
@ -54,7 +54,8 @@ export class ProjectService {
|
|||||||
grid_size: project.grid_size,
|
grid_size: project.grid_size,
|
||||||
name: project.name,
|
name: project.name,
|
||||||
scene_width: project.scene_width,
|
scene_width: project.scene_width,
|
||||||
scene_height: project.scene_height
|
scene_height: project.scene_height,
|
||||||
|
show_interface_labels: project.show_interface_labels
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user