ui: eslint: Miscellaneous eslint fixes

Function syntax, raw words, string templates, no prototype builtins

Signed-off-by: Dominic Jäger <d.jaeger@proxmox.com>
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Dominic Jäger 2021-05-18 14:12:18 +02:00 committed by Thomas Lamprecht
parent 16b8c3ddab
commit 6121e027ec
6 changed files with 4 additions and 14 deletions

View File

@ -91,11 +91,6 @@ Ext.define('PVE.window.MPResize', {
items: [me.formPanel],
});
me.callParent();
if (!me.disk) {
return;
}
},
});

View File

@ -92,9 +92,5 @@ Ext.define('PVE.window.HDResize', {
me.callParent();
if (!me.disk) {
return;
}
},
});

View File

@ -24,7 +24,7 @@ Ext.define('PVE.qemu.OSDefaults', {
var me = this;
var addOS = function(settings) {
if (me.hasOwnProperty(settings.parent)) {
if (Object.prototype.hasOwnProperty.call(settings, 'parent')) {
var child = Ext.clone(me[settings.parent]);
me[settings.pveOS] = Ext.apply(child, settings);
} else {

View File

@ -78,7 +78,7 @@ Ext.define('PVE.panel.StoragePruneInputPanel', {
}
// always delete old 'maxfiles' on edit, we map it to keep-last on window load
return {
delete: ['prune-backups', 'maxfiles'],
'delete': ['prune-backups', 'maxfiles'],
};
}
let options = { 'prune-backups': retention };

View File

@ -33,8 +33,7 @@ Ext.define('PVE.storage.ImageView', {
text: gettext('Remove'),
disabled: true,
handler: function(btn, event, rec) {
var url = "/nodes/" + nodename + "/storage/" + storage +
"/content" + '/' + rec.data.volid;
let url = `/nodes/${nodename}/storage/${storage}/content/${rec.data.volid}`;
var vmid = rec.data.vmid;
var store = PVE.data.ResourceStore;

View File

@ -38,7 +38,7 @@ Ext.define('PVE.storage.ZFSInputPanel', {
return me.callParent([values]);
},
setValues: function diff(values) {
setValues: function(values) {
values.writecache = values.nowritecache ? 0 : 1;
this.callParent([values]);
},