Commit ea6a252e authored by Dietmar Maurer's avatar Dietmar Maurer

fix bug 114: do not display 'nothing selected' after logout

parent d100ceaa
pve-manager (2.0-47) unstable; urgency=low
* fix bug 114: do not display 'nothing selected' after logout
-- Proxmox Support Team <support@proxmox.com> Mon, 26 Mar 2012 13:28:09 +0200
pve-manager (2.0-46) unstable; urgency=low pve-manager (2.0-46) unstable; urgency=low
* code cleanups * code cleanups
......
...@@ -2,7 +2,7 @@ RELEASE=2.0 ...@@ -2,7 +2,7 @@ RELEASE=2.0
VERSION=2.0 VERSION=2.0
PACKAGE=pve-manager PACKAGE=pve-manager
PACKAGERELEASE=46 PACKAGERELEASE=47
BINDIR=${DESTDIR}/usr/bin BINDIR=${DESTDIR}/usr/bin
PERLLIBDIR=${DESTDIR}/usr/share/perl5 PERLLIBDIR=${DESTDIR}/usr/share/perl5
......
...@@ -178,7 +178,11 @@ Ext.define('PVE.StdWorkspace', { ...@@ -178,7 +178,11 @@ Ext.define('PVE.StdWorkspace', {
cont.add(comp); cont.add(comp);
cont.doLayout(); cont.doLayout();
} else { } else {
PVE.Utils.setErrorMask(cont, 'nothing selected'); // TODO: display something useful
// Note:: error mask has wrong zindex, so we do not
// use that - see bug 114
// PVE.Utils.setErrorMask(cont, 'nothing selected');
} }
}, },
......
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