]> git.proxmox.com Git - pve-manager.git/commitdiff
ui: ceph: install wizard: eslint fixes and code cleanup
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Sat, 24 Apr 2021 16:44:01 +0000 (18:44 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Sat, 24 Apr 2021 16:44:01 +0000 (18:44 +0200)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
www/manager6/ceph/CephInstallWizard.js

index 74e3d1c2e2246795c2a681b81ba427249b256d2a..b5305364e9f394118e060f4733d057094144ae33 100644 (file)
@@ -95,7 +95,7 @@ Ext.define('PVE.ceph.CephHighestVersionDisplay', {
 
                let maxversion = [];
                let maxversiontext = "";
-               for (const [nodename, data] of Object.entries(nodes)) {
+               for (const [_nodename, data] of Object.entries(nodes)) {
                    let version = data.version.parts;
                    if (PVE.Utils.compare_ceph_versions(version, maxversion) > 0) {
                        maxversion = version;