fix parsing issue for desktop platform

This commit is contained in:
Bunny Bites 2023-11-14 01:13:47 +05:30
parent a74e6d82c7
commit 67670875bb

View file

@ -453,7 +453,7 @@ function handler(event, name, bubbles, config) {
const formData = new FormData(target);
for (let name of formData.keys()) {
const fieldType = form.elements[name].type;
const fieldType = target.elements[name].type;
switch (fieldType) {
case "select-multiple":