Commit 8232365f authored by Dietmar Maurer's avatar Dietmar Maurer

GUI: show correct node status in 'Storage View'

parent 657fadcf
pve-manager (3.2-24) unstable; urgency=low pve-manager (3.2-24) unstable; urgency=low
* GUI: add new 'Pool View' * GUI: add new 'Pool View'
* GUI: show correct node status in 'Storage View'
-- Proxmox Support Team <support@proxmox.com> Wed, 13 Aug 2014 08:07:59 +0200 -- Proxmox Support Team <support@proxmox.com> Wed, 13 Aug 2014 08:07:59 +0200
......
...@@ -18,7 +18,7 @@ Ext.define('PVE.form.ViewSelector', { ...@@ -18,7 +18,7 @@ Ext.define('PVE.form.ViewSelector', {
text: gettext('Storage View'), text: gettext('Storage View'),
groups: ['node'], groups: ['node'],
filterfn: function(node) { filterfn: function(node) {
return node.data.type === 'storage'; return node.data.type === 'storage' || node.data.type === 'node';
} }
}, },
pool: { pool: {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment