]> git.proxmox.com Git - pve-manager.git/blobdiff - www/manager6/ceph/Log.js
fix #4551: ui: use gettext on hardcoded byte units
[pve-manager.git] / www / manager6 / ceph / Log.js
index 07709bc78f6b034d8e3d5c056d6f58c1d5b30423..4fda3209da15ebd21cf251480d7f4062b247278a 100644 (file)
@@ -1,19 +1,21 @@
 Ext.define('PVE.ceph.Log', {
     extend: 'Proxmox.panel.LogView',
     xtype: 'cephLogView',
+
     nodename: undefined,
+
     failCallback: function(response) {
        var me = this;
        var msg = response.htmlStatus;
        var windowShow = PVE.Utils.showCephInstallOrMask(me, msg, me.nodename,
-           function(win){
-               me.mon(win, 'cephInstallWindowClosed', function(){
+           function(win) {
+               me.mon(win, 'cephInstallWindowClosed', function() {
                    me.loadTask.delay(200);
                });
-           }
+           },
        );
        if (!windowShow) {
            Proxmox.Utils.setErrorMask(me, msg);
        }
-    }
+    },
 });