always enable console button

This commit is contained in:
Dietmar Maurer 2011-11-14 12:45:50 +01:00
parent 176eee4fec
commit dd7f2655a7
2 changed files with 0 additions and 2 deletions

View File

@ -152,7 +152,6 @@ Ext.define('PVE.openvz.Config', {
startBtn.setDisabled(status === 'running');
shutdownBtn.setDisabled(status !== 'running');
stopBtn.setDisabled(status === 'stopped');
consoleBtn.setDisabled(status !== 'running');
removeBtn.setDisabled(status !== 'stopped');
});

View File

@ -155,7 +155,6 @@ Ext.define('PVE.qemu.Config', {
resetBtn.setDisabled(status !== 'running');
shutdownBtn.setDisabled(status !== 'running');
stopBtn.setDisabled(status === 'stopped');
consoleBtn.setDisabled(status !== 'running');
removeBtn.setDisabled(status !== 'stopped');
});