Commit a319e5db authored by Dietmar Maurer's avatar Dietmar Maurer

avoid re-select inside selectionChange callback

parent 8990410d
...@@ -3,6 +3,8 @@ pve-manager (3.1-25) unstable; urgency=low ...@@ -3,6 +3,8 @@ pve-manager (3.1-25) unstable; urgency=low
* delay UNAUTHORIZED response to avoid DOS attac * delay UNAUTHORIZED response to avoid DOS attac
* fix typo in pve cron script * 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 -- Proxmox Support Team <support@proxmox.com> Mon, 18 Nov 2013 11:20:37 +0100
......
...@@ -47,7 +47,9 @@ Ext.define('PVE.dc.BackupEdit', { ...@@ -47,7 +47,9 @@ Ext.define('PVE.dc.BackupEdit', {
sel.push(record.data.vmid); sel.push(record.data.vmid);
}); });
insideUpdate = true;
vmidField.setValue(sel); vmidField.setValue(sel);
insideUpdate = false;
} }
} }
} }
......
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