GUI: show correct node status in 'Storage View'

This commit is contained in:
Dietmar Maurer 2014-08-13 09:11:38 +02:00
parent 95c9314c60
commit 4f741a2e39
2 changed files with 3 additions and 1 deletions

View File

@ -2,6 +2,8 @@ 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
pve-manager (3.2-23) unstable; urgency=low pve-manager (3.2-23) unstable; urgency=low

View File

@ -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: {