BUG: add issue fix for tag dropdown close on column drag

This commit is contained in:
Ivymaster
2026-06-30 10:33:24 +02:00
parent 69b19562f4
commit f9b3939d09
@@ -291,9 +291,12 @@ export function customTagFilter(cell, onRendered, success, cancel, params) {
});
input.addEventListener("focus", (e) => {
e.stopPropagation();
openDropdown();
});
input.addEventListener("blur", (e) => {
e.stopPropagation();
clearFilter();
});
container.appendChild(input);