ui: ceph: install wizard: eslint fixes and code cleanup

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2021-04-24 18:44:01 +02:00
parent 13786fb021
commit 436f638d44

View 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;