We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d11b994 commit d872753Copy full SHA for d872753
src/unfold/static/unfold/js/app.js
@@ -78,9 +78,9 @@ const filterForm = () => {
78
}
79
80
filterForm.addEventListener("formdata", (event) => {
81
- for (const [key, value] of event.formData.entries()) {
+ Array.from(event.formData.entries()).forEach(([key, value]) => {
82
if (value === "") event.formData.delete(key);
83
- }
+ });
84
});
85
};
86
0 commit comments