Resizing svg on update
diff --git a/views/ngXosViews/mcordTopology/src/js/main.js b/views/ngXosViews/mcordTopology/src/js/main.js
index bf57f1d..caf7b65 100644
--- a/views/ngXosViews/mcordTopology/src/js/main.js
+++ b/views/ngXosViews/mcordTopology/src/js/main.js
@@ -46,6 +46,10 @@
       // retrieving instances list
       const getData = () => {
 
+        d3.select('svg')
+          .style('width', `${el.clientWidth}px`)
+          .style('height', `${el.clientHeight}px`);
+
         nodes = TopologyElements.nodes;
         links = TopologyElements.links;