mirror of
https://github.com/DioxusLabs/dioxus
synced 2025-02-17 06:08:26 +00:00
fix parsing issue for desktop platform
This commit is contained in:
parent
a74e6d82c7
commit
67670875bb
1 changed files with 1 additions and 1 deletions
|
@ -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":
|
||||
|
|
Loading…
Add table
Reference in a new issue