mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2024-12-20 05:27:56 +00:00
Update node.ts
This commit is contained in:
parent
305182b01f
commit
753e08a6ba
@ -87,13 +87,13 @@ export class NodeWidget implements Widget {
|
|||||||
})
|
})
|
||||||
.attr('xnode:href', (n: MapNode) => n.symbolUrl)
|
.attr('xnode:href', (n: MapNode) => n.symbolUrl)
|
||||||
.attr('width', (n: MapNode) => {
|
.attr('width', (n: MapNode) => {
|
||||||
if (n.nodeType === 'cloud' || n.nodeType === 'nat') return n.width;
|
if (n.nodeType === 'cloud' || n.nodeType === 'nat') return 120;
|
||||||
if (!n.width) return 60;
|
if (!n.width) return 60;
|
||||||
if (n.width > 64) return 64;
|
if (n.width > 64) return 64;
|
||||||
return n.width;
|
return n.width;
|
||||||
})
|
})
|
||||||
.attr('height', (n: MapNode) => {
|
.attr('height', (n: MapNode) => {
|
||||||
if (n.nodeType === 'cloud' || n.nodeType === 'nat') return n.height;
|
if (n.nodeType === 'cloud' || n.nodeType === 'nat') return 60;
|
||||||
if (!n.height) return 60;
|
if (!n.height) return 60;
|
||||||
if (n.height > 64) return 64;
|
if (n.height > 64) return 64;
|
||||||
return n.height;
|
return n.height;
|
||||||
|
Loading…
Reference in New Issue
Block a user