mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2024-12-18 20:47:51 +00:00
commit
985d3a9ab3
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "gns3-web-ui",
|
||||
"version": "2.2.49",
|
||||
"version": "2.2.50",
|
||||
"author": {
|
||||
"name": "GNS3 Technology Inc.",
|
||||
"email": "developers@gns3.com"
|
||||
|
@ -59,6 +59,15 @@
|
||||
placeholder="Start command"
|
||||
/>
|
||||
</mat-form-field>
|
||||
<mat-form-field class="form-field">
|
||||
<input
|
||||
matInput
|
||||
type="text"
|
||||
[ngModelOptions]="{ standalone: true }"
|
||||
[(ngModel)]="dockerTemplate.mac_address"
|
||||
placeholder="Base MAC"
|
||||
/>
|
||||
</mat-form-field>
|
||||
<mat-form-field class="form-field">
|
||||
<input
|
||||
formControlName="adapter"
|
||||
|
@ -10,6 +10,7 @@ export class DockerTemplate {
|
||||
console_http_port: number;
|
||||
console_resolution: string;
|
||||
console_type: string;
|
||||
mac_address: string;
|
||||
custom_adapters: CustomAdapter[];
|
||||
default_name_format: string;
|
||||
environment: string;
|
||||
|
@ -256,6 +256,7 @@ export class TemplateMocksService {
|
||||
console_http_port: 80,
|
||||
console_resolution: '1024x768',
|
||||
console_type: 'telnet',
|
||||
mac_address: '',
|
||||
custom_adapters: [],
|
||||
default_name_format: '{name}-{0}',
|
||||
environment: '',
|
||||
|
Loading…
Reference in New Issue
Block a user