Skip to content

Commit

Permalink
Merge pull request #1528 from GNS3/2.2
Browse files Browse the repository at this point in the history
Release v2.2.50
  • Loading branch information
grossmj authored Oct 21, 2024
2 parents 1196742 + 28f8de0 commit 985d3a9
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gns3-web-ui",
"version": "2.2.49",
"version": "2.2.50",
"author": {
"name": "GNS3 Technology Inc.",
"email": "[email protected]"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,15 @@ <h1 class="col">Docker image configuration</h1>
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"
Expand Down
1 change: 1 addition & 0 deletions src/app/models/templates/docker-template.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
1 change: 1 addition & 0 deletions src/app/services/template-mocks.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: '',
Expand Down

0 comments on commit 985d3a9

Please sign in to comment.