Combogrid: clear filter on blur

Previously, deselecting and reselecting the input field
led to the previous filter still being applied, although the
input field was cleared.

Signed-off-by: Matthias Heiserer <m.heiserer@proxmox.com>
This commit is contained in:
Matthias Heiserer 2022-03-09 15:18:14 +01:00 committed by Dominik Csapak
parent 6971ce9d6b
commit 7e47328692

View File

@ -325,6 +325,7 @@ Ext.define('Proxmox.form.ComboGrid', {
me.changingFilters = true;
me.store.removeFilter(filter, true);
me.changingFilters = false;
me.store.fireEvent('refresh');
}
},