ui: datastore content: better cope with restricted privs on parent namespaces
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
069720f510
commit
70493f1823
|
@ -196,13 +196,20 @@ Ext.define('PBS.DataStoreContent', {
|
|||
let me = this;
|
||||
let view = this.getView();
|
||||
|
||||
let namespaces = await me.loadNamespaceFromSameLevel();
|
||||
|
||||
if (!success) {
|
||||
// TODO also check error code for != 403 ?
|
||||
if (namespaces.length === 0) {
|
||||
let error = Proxmox.Utils.getResponseErrorMessage(operation.getError());
|
||||
Proxmox.Utils.setErrorMask(view.down('treeview'), error);
|
||||
return;
|
||||
} else {
|
||||
records = [];
|
||||
}
|
||||
} else {
|
||||
Proxmox.Utils.setErrorMask(view.down('treeview'));
|
||||
}
|
||||
|
||||
let namespaces = await me.loadNamespaceFromSameLevel();
|
||||
|
||||
let groups = this.getRecordGroups(records);
|
||||
|
||||
|
|
Loading…
Reference in New Issue