Fix vpnDashboard CSS
diff --git a/views/ngXosViews/vpnDashboard/src/js/main.js b/views/ngXosViews/vpnDashboard/src/js/main.js
index a93f720..233051a 100644
--- a/views/ngXosViews/vpnDashboard/src/js/main.js
+++ b/views/ngXosViews/vpnDashboard/src/js/main.js
@@ -49,7 +49,7 @@
       .then((vpns) => {
         this.vpns = vpns;
         for (var i = 0; i < this.vpns.length; i++) {
-          var blob = new Blob([ this.vpns[i].script_text ], { type : 'text/plain' });
+          var blob = new Blob([this.vpns[i].script_text], {type: 'text/plain'});
           this.vpns[i].script_text = (window.URL || window.webkitURL).createObjectURL( blob );
         }
       })