Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-bsonschema-form

Package Overview
Dependencies
Maintainers
1
Versions
52
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-bsonschema-form - npm Package Compare versions

Comparing version 0.41.12 to 0.41.13

10

lib/utils.js

@@ -277,3 +277,9 @@ "use strict";

// Override schema defaults with form data.
return mergeObjects(defaults, formData);
var r = mergeObjects(defaults, formData);
if (defaults && defaults.businessGroupID) {
console.log('defaults: ', defaults);
console.log('formData: ', formData);
console.log('r: ', r);
}
return r;
}

@@ -333,3 +339,3 @@ return formData || defaults;

acc[key] = left.concat(right);
} else {
} else if (typeof right !== 'undefined') {
acc[key] = right;

@@ -336,0 +342,0 @@ }

2

package.json
{
"name": "react-bsonschema-form",
"version": "0.41.12",
"version": "0.41.13",
"description": "A simple React component capable of building HTML forms out of a JSON schema.",

@@ -5,0 +5,0 @@ "scripts": {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc