Skip to content

Commit 93aabe0

Browse files
authored
Merge pull request #1515 from GNS3/2.2
Release v2.2.48
2 parents dea6a50 + 27446f8 commit 93aabe0

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gns3-web-ui",
3-
"version": "2.2.47",
3+
"version": "2.2.49.dev1",
44
"author": {
55
"name": "GNS3 Technology Inc.",
66
"email": "[email protected]"

src/app/app.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<div [ngClass]="{ dark: darkThemeEnabled, light: !darkThemeEnabled }">
22
<router-outlet></router-outlet>
3-
<app-adbutler></app-adbutler>
3+
<!-- <app-adbutler></app-adbutler> -->
44
</div>

src/app/cartography/widgets/interface-status.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ export class InterfaceStatusWidget implements Widget {
9090
.merge(status_started_enter)
9191
.attr('class', 'status_started')
9292
.attr('width', (ls: LinkStatus) => {
93-
return ls.port.length * 8 + 10;
93+
return ls.port.length * 10 + 5;
9494
})
9595
.attr('height', 20)
9696
.attr('x', (ls: LinkStatus) => ls.x - 30)
@@ -122,7 +122,7 @@ export class InterfaceStatusWidget implements Widget {
122122
.merge(status_stopped_enter)
123123
.attr('class', 'status_stopped')
124124
.attr('width', (ls: LinkStatus) => {
125-
return ls.port.length * 8 + 10;
125+
return ls.port.length * 10 + 5;
126126
})
127127
.attr('height', 20)
128128
.attr('x', (ls: LinkStatus) => ls.x - 30)
@@ -154,7 +154,7 @@ export class InterfaceStatusWidget implements Widget {
154154
.merge(status_suspended_enter)
155155
.attr('class', 'status_suspended')
156156
.attr('width', (ls: LinkStatus) => {
157-
return ls.port.length * 8 + 10;
157+
return ls.port.length * 10 + 5;
158158
})
159159
.attr('height', 20)
160160
.attr('x', (ls: LinkStatus) => ls.x - 30)

src/app/components/project-map/context-menu/actions/console-device-action-browser/console-device-action-browser.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
</button>
55
<button
66
mat-menu-item
7-
*ngIf="node.node_type === 'docker' || node.node_type === 'dynamips'"
7+
*ngIf="node.node_type === 'docker' || node.node_type === 'dynamips' || node.node_type === 'qemu'"
88
(click)="openConsole(auxiliary=true)"
99
>
1010
<mat-icon>web_asset</mat-icon>

src/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@
3838
<body class="mat-app-background" oncontextmenu="return false;">
3939
<app-root></app-root>
4040
<!-- Global site tag (gtag.js) - Google Analytics -->
41-
<script async src="https://www.googletagmanager.com/gtag/js?id=G-5D6FZL9923"></script>
41+
<script async src="https://www.googletagmanager.com/gtag/js?id=G-0BT7QQV1W1></script>
4242
<script>
4343
window.dataLayer = window.dataLayer || [];
4444
function gtag() {
4545
dataLayer.push(arguments);
4646
}
4747
gtag('js', new Date());
4848
49-
gtag('config', 'G-5D6FZL9923');
49+
gtag('config', 'G-0BT7QQV1W1');
5050
</script>
5151
</body>
5252
</html>

0 commit comments

Comments
 (0)