]> git.proxmox.com Git - pmg-gui.git/blobdiff - js/ObjectGroupSelector.js
StatTimeSelector: don't show invalid month/day combinations
[pmg-gui.git] / js / ObjectGroupSelector.js
index caa633ab9303a2998d9f0b04fe7ebc9661f42bd1..3a17e5e5a0b4a08e6860c7ec96cbbe7f592f0307 100644 (file)
@@ -9,7 +9,7 @@ Ext.define('PMG.ObjectGroupSelector', {
 
     rulegroup: undefined,
 
-    initComponent : function() {
+    initComponent: function() {
        var me = this;
 
        if (!me.rulegroup) {
@@ -42,11 +42,12 @@ Ext.define('PMG.ObjectGroupSelector', {
                xtype: 'pmgActionList',
                title: undefined,
                enableButtons: false,
+               border: true,
                listeners: {
                    itemdblclick: function(view, rec) {
                        me.fireEvent('selectObjectGroup', me, rec);
-                   }
-               }
+                   },
+               },
            };
        } else {
            me.items = {
@@ -56,11 +57,11 @@ Ext.define('PMG.ObjectGroupSelector', {
                listeners: {
                    itemdblclick: function(view, rec) {
                        me.fireEvent('selectObjectGroup', me, rec);
-                   }
-               }
+                   },
+               },
            };
        }
 
        me.callParent();
-    }
+    },
 });