pve-manager/www/manager6/ceph/Log.js
Thomas Lamprecht 6386068d0e ui: call more update store functions in the store scope
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
2020-04-09 16:45:22 +02:00

22 lines
473 B
JavaScript

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(){
me.loadTask.delay(200);
});
}
);
if (!windowShow) {
Proxmox.Utils.setErrorMask(me, msg);
}
}
});