ui: eslint: Functions may not be completely empty

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:15 +02:00
committed by Thomas Lamprecht
parent 55ee6ba132
commit 5eb9b7b1b0
5 changed files with 5 additions and 1 deletions

View File

@ -12,6 +12,7 @@ Ext.define('PVE.storage.GlusterFsScan', {
width: 350,
},
doRawQuery: function() {
// nothing
},
onTriggerClick: function() {

View File

@ -11,6 +11,7 @@ Ext.define('PVE.storage.IScsiScan', {
width: 350,
},
doRawQuery: function() {
// do nothing
},
onTriggerClick: function() {

View File

@ -8,6 +8,7 @@ Ext.define('PVE.storage.TPoolSelector', {
editable: false,
doRawQuery: function() {
// nothing
},
onTriggerClick: function() {

View File

@ -12,6 +12,7 @@ Ext.define('PVE.storage.NFSScan', {
width: 350,
},
doRawQuery: function() {
// do nothing
},
onTriggerClick: function() {

View File

@ -66,6 +66,6 @@ Ext.define('PVE.storage.StatusView', {
],
updateTitle: function() {
return;
// nothing
},
});