avoid re-select inside selectionChange callback

This commit is contained in:
Dietmar Maurer 2013-11-28 09:23:43 +01:00
parent b0a6529469
commit 429d25a38c
2 changed files with 4 additions and 0 deletions

View File

@ -3,6 +3,8 @@ pve-manager (3.1-25) unstable; urgency=low
* delay UNAUTHORIZED response to avoid DOS attac
* fix typo in pve cron script
* backup GUI: fix VMID selection bug
-- Proxmox Support Team <support@proxmox.com> Mon, 18 Nov 2013 11:20:37 +0100

View File

@ -47,7 +47,9 @@ Ext.define('PVE.dc.BackupEdit', {
sel.push(record.data.vmid);
});
insideUpdate = true;
vmidField.setValue(sel);
insideUpdate = false;
}
}
}