diff --git a/package.json b/package.json index 5258c01a..21be3927 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gns3-web-ui", - "version": "2.2.47", + "version": "2.2.49.dev1", "author": { "name": "GNS3 Technology Inc.", "email": "developers@gns3.com" diff --git a/src/app/app.component.html b/src/app/app.component.html index db17fd83..a947edae 100644 --- a/src/app/app.component.html +++ b/src/app/app.component.html @@ -1,4 +1,4 @@
- +
diff --git a/src/app/cartography/widgets/interface-status.ts b/src/app/cartography/widgets/interface-status.ts index 0e6fc096..3f916838 100644 --- a/src/app/cartography/widgets/interface-status.ts +++ b/src/app/cartography/widgets/interface-status.ts @@ -90,7 +90,7 @@ export class InterfaceStatusWidget implements Widget { .merge(status_started_enter) .attr('class', 'status_started') .attr('width', (ls: LinkStatus) => { - return ls.port.length * 8 + 10; + return ls.port.length * 10 + 5; }) .attr('height', 20) .attr('x', (ls: LinkStatus) => ls.x - 30) @@ -122,7 +122,7 @@ export class InterfaceStatusWidget implements Widget { .merge(status_stopped_enter) .attr('class', 'status_stopped') .attr('width', (ls: LinkStatus) => { - return ls.port.length * 8 + 10; + return ls.port.length * 10 + 5; }) .attr('height', 20) .attr('x', (ls: LinkStatus) => ls.x - 30) @@ -154,7 +154,7 @@ export class InterfaceStatusWidget implements Widget { .merge(status_suspended_enter) .attr('class', 'status_suspended') .attr('width', (ls: LinkStatus) => { - return ls.port.length * 8 + 10; + return ls.port.length * 10 + 5; }) .attr('height', 20) .attr('x', (ls: LinkStatus) => ls.x - 30) diff --git a/src/app/components/project-map/context-menu/actions/console-device-action-browser/console-device-action-browser.component.html b/src/app/components/project-map/context-menu/actions/console-device-action-browser/console-device-action-browser.component.html index 6faeccf9..509ebe4d 100644 --- a/src/app/components/project-map/context-menu/actions/console-device-action-browser/console-device-action-browser.component.html +++ b/src/app/components/project-map/context-menu/actions/console-device-action-browser/console-device-action-browser.component.html @@ -4,7 +4,7 @@