fix: foot content allow blank

This commit is contained in:
wangruidong
2024-07-08 19:17:25 +08:00
committed by w940853815
parent 387ab4f1b3
commit 124ff9a8c2

View File

@@ -234,7 +234,7 @@ export default {
} else {
value = values[key]
}
if (value) {
if (value !== undefined) {
form.append(key, value)
}
}