]> git.proxmox.com Git - pve-manager.git/commitdiff
ui: eslint: Functions may not be completely empty
authorDominic Jäger <d.jaeger@proxmox.com>
Tue, 18 May 2021 12:12:15 +0000 (14:12 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Tue, 18 May 2021 13:22:05 +0000 (15:22 +0200)
Signed-off-by: Dominic Jäger <d.jaeger@proxmox.com>
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
www/manager6/storage/GlusterFsEdit.js
www/manager6/storage/IScsiEdit.js
www/manager6/storage/LvmThinEdit.js
www/manager6/storage/NFSEdit.js
www/manager6/storage/StatusView.js

index 4ea5da26cef0222a8a3aca09489f8fdab021092b..8155d9c2a21038c33c93b2b7804fc4e096de8812 100644 (file)
@@ -12,6 +12,7 @@ Ext.define('PVE.storage.GlusterFsScan', {
        width: 350,
     },
     doRawQuery: function() {
+       // nothing
     },
 
     onTriggerClick: function() {
index c5afa53bccc8bf4534cdb277d11c3c02c8049663..341e05354fa5f79055f8e7bb2cc1f7a0fb47b47f 100644 (file)
@@ -11,6 +11,7 @@ Ext.define('PVE.storage.IScsiScan', {
        width: 350,
     },
     doRawQuery: function() {
+       // do nothing
     },
 
     onTriggerClick: function() {
index 97248f119f6d7af497706d6ed2905d071c559b1d..4eab77405392cc2d8571a85fa267e2429f4b1743 100644 (file)
@@ -8,6 +8,7 @@ Ext.define('PVE.storage.TPoolSelector', {
     editable: false,
 
     doRawQuery: function() {
+       // nothing
     },
 
     onTriggerClick: function() {
index a1be8e7442921d8a7cf010ee855d9a3a7de6bdfe..faa417327155e8669e9047746a2241dc6b1087c7 100644 (file)
@@ -12,6 +12,7 @@ Ext.define('PVE.storage.NFSScan', {
        width: 350,
     },
     doRawQuery: function() {
+       // do nothing
     },
 
     onTriggerClick: function() {
index 90631b0b675a14510d4a3b85c784719378efcc89..6a5ba36f02a58f619c188250d48f9eac6ee3273f 100644 (file)
@@ -66,6 +66,6 @@ Ext.define('PVE.storage.StatusView', {
     ],
 
     updateTitle: function() {
-       return;
+       // nothing
     },
 });