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:
committed by
Thomas Lamprecht
parent
55ee6ba132
commit
5eb9b7b1b0
@ -12,6 +12,7 @@ Ext.define('PVE.storage.GlusterFsScan', {
|
||||
width: 350,
|
||||
},
|
||||
doRawQuery: function() {
|
||||
// nothing
|
||||
},
|
||||
|
||||
onTriggerClick: function() {
|
||||
|
@ -11,6 +11,7 @@ Ext.define('PVE.storage.IScsiScan', {
|
||||
width: 350,
|
||||
},
|
||||
doRawQuery: function() {
|
||||
// do nothing
|
||||
},
|
||||
|
||||
onTriggerClick: function() {
|
||||
|
@ -8,6 +8,7 @@ Ext.define('PVE.storage.TPoolSelector', {
|
||||
editable: false,
|
||||
|
||||
doRawQuery: function() {
|
||||
// nothing
|
||||
},
|
||||
|
||||
onTriggerClick: function() {
|
||||
|
@ -12,6 +12,7 @@ Ext.define('PVE.storage.NFSScan', {
|
||||
width: 350,
|
||||
},
|
||||
doRawQuery: function() {
|
||||
// do nothing
|
||||
},
|
||||
|
||||
onTriggerClick: function() {
|
||||
|
@ -66,6 +66,6 @@ Ext.define('PVE.storage.StatusView', {
|
||||
],
|
||||
|
||||
updateTitle: function() {
|
||||
return;
|
||||
// nothing
|
||||
},
|
||||
});
|
||||
|
Reference in New Issue
Block a user