]> git.proxmox.com Git - pve-manager.git/blobdiff - www/manager6/form/HotplugFeatureSelector.js
ui: eslint: fix various spacing related issues
[pve-manager.git] / www / manager6 / form / HotplugFeatureSelector.js
index 75cd7cc7472c3059261845a4a181e5f5cfe57651..cb9fc552adbac22cdbf41c2b04ed41420a8a4d38 100644 (file)
@@ -52,7 +52,7 @@ Ext.define('PVE.form.HotplugFeatureSelector', {
        var me = this,
        boxes = me.getBoxes(),
        data = [];
-       Ext.Array.forEach(boxes, function(box){
+       Ext.Array.forEach(boxes, function(box) {
            if (box.getValue()) {
                data.push(box.inputValue);
            }
@@ -60,7 +60,7 @@ Ext.define('PVE.form.HotplugFeatureSelector', {
 
        /* because above is hotplug an array */
        if (data.length === 0) {
-           return { 'hotplug':'0' };
+           return { 'hotplug': '0' };
        } else {
            return { 'hotplug': data.join(',') };
        }