@globalbrain/sefirot 3.29.1 → 3.29.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/lib/http/Http.ts +2 -1
  2. package/package.json +1 -1
package/lib/http/Http.ts CHANGED
@@ -165,7 +165,8 @@ export class Http {
165
165
  ) {
166
166
  this.objectToFormData(obj[property], fd, property)
167
167
  } else {
168
- fd.append(formKey, obj[property])
168
+ const value = obj[property] === null ? '' : obj[property]
169
+ fd.append(formKey, value)
169
170
  }
170
171
  })
171
172
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@globalbrain/sefirot",
3
- "version": "3.29.1",
3
+ "version": "3.29.2",
4
4
  "packageManager": "pnpm@8.15.1",
5
5
  "description": "Vue Components for Global Brain Design System.",
6
6
  "author": "Kia Ishii <ka.ishii@globalbrains.com>",