@globalbrain/sefirot 3.29.0 → 3.29.1

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 +5 -1
  2. package/package.json +1 -1
package/lib/http/Http.ts CHANGED
@@ -158,7 +158,11 @@ export class Http {
158
158
  return
159
159
  }
160
160
 
161
- if (typeof obj[property] === 'object' && !(obj[property] instanceof Blob)) {
161
+ if (
162
+ typeof obj[property] === 'object'
163
+ && !(obj[property] instanceof Blob)
164
+ && obj[property] !== null
165
+ ) {
162
166
  this.objectToFormData(obj[property], fd, property)
163
167
  } else {
164
168
  fd.append(formKey, obj[property])
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@globalbrain/sefirot",
3
- "version": "3.29.0",
3
+ "version": "3.29.1",
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>",