mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-02-20 17:52:46 +00:00
Merge pull request #522 from GNS3/View-options-(like-show-interface-labels,-etc.)-should-be-taken-from-configuration-file
View options (like show interface labels, etc.) should be taken from configuration file
This commit is contained in:
commit
725c387bdd
@ -34,6 +34,10 @@
|
||||
Leave this project running in the background after closing
|
||||
</mat-checkbox>
|
||||
|
||||
<mat-checkbox [ngModelOptions]="{standalone: true}" [(ngModel)]="project.show_interface_labels">
|
||||
Show interface labels at start
|
||||
</mat-checkbox>
|
||||
|
||||
<div mat-dialog-actions>
|
||||
<button mat-button (click)="onNoClick()" color="accent">Cancel</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,
|
||||
name: project.name,
|
||||
scene_width: project.scene_width,
|
||||
scene_height: project.scene_height
|
||||
scene_height: project.scene_height,
|
||||
show_interface_labels: project.show_interface_labels
|
||||
});
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user