]> git.proxmox.com Git - pmg-gui.git/blobdiff - js/VersionInfo.js
dkim settings: improve label for signing domain source selection
[pmg-gui.git] / js / VersionInfo.js
index 91288d291e835e9edb32e962a17eee2d3b3931c4..408a380c2d005fdfa409521ec0a46fea8fafbd8b 100644 (file)
@@ -1,20 +1,23 @@
-/*global Proxmox*/
-Ext.define('PMG.view.main.VersionInfo',{
+Ext.define('PMG.view.main.VersionInfo', {
     extend: 'Ext.Component',
     xtype: 'versioninfo',
 
     makeApiCall: true,
 
     data: {
-       version: false
+       version: false,
+    },
+
+    style: {
+       'font-size': '14px',
+       'line-height': '18px',
     },
 
     tpl: [
        'Mail Gateway',
        '<tpl if="version">',
-       ' {version}-{release}/{repoid}',
+       ' {version}',
        '</tpl>',
-       ' <a href="https://bugzilla.proxmox.com">BETA</a>'
     ],
 
     initComponent: function() {
@@ -27,8 +30,8 @@ Ext.define('PMG.view.main.VersionInfo',{
                method: 'GET',
                success: function(response) {
                    me.update(response.result.data);
-               }
+               },
            });
        }
-    }
+    },
 });