From 555dfe7b8e87827c680f5e0cb53695036995bd54 Mon Sep 17 00:00:00 2001 From: Dietmar Maurer Date: Thu, 26 Mar 2020 08:38:35 +0100 Subject: [PATCH] gui: display DataStoreConfig above DataStoreContent --- www/NavigationTree.js | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/www/NavigationTree.js b/www/NavigationTree.js index e1004cad..52c2e740 100644 --- a/www/NavigationTree.js +++ b/www/NavigationTree.js @@ -18,12 +18,6 @@ Ext.define('PBS.store.NavigationStore', { path: 'pbsSystemConfiguration', expanded: true, children: [ - { - text: gettext('Data Store'), - iconCls: 'fa fa-archive', - path: 'pbsDataStoreConfig', - leaf: true - }, { text: gettext('Subscription'), iconCls: 'fa fa-support', @@ -67,17 +61,17 @@ Ext.define('PBS.view.main.NavigationTree', { let root = view.getStore().getRoot(); - if (!root.findChild('path', 'pbsDataStoreList', false)) { + if (!root.findChild('path', 'pbsDataStoreConfig', false)) { root.appendChild({ text: gettext('Data Store'), expanded: true, iconCls: 'fa fa-archive', - path: 'pbsDataStoreList', + path: 'pbsDataStoreConfig', leaf: false }); } - var list = root.findChild('path', 'pbsDataStoreList', false); + var list = root.findChild('path', 'pbsDataStoreConfig', false); var length = records.length; var lookup_hash = {}; for (var i = 0; i < length; i++) {