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

fulcrum-core

Package Overview
Dependencies
Maintainers
2
Versions
109
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fulcrum-core - npm Package Compare versions

Comparing version 0.12.8 to 0.12.9

test/elements/condition.js

7

dist/elements/condition.js

@@ -262,2 +262,9 @@ "use strict";

return record.statusValue;
} // Also search repeatables for fieldKey as it may exist in a nested object
for (var i = 0; i < values.repeatableItems.length; i++) {
var formValues = values.repeatableItems[i]._formValues;
var value = formValues.get(condition.fieldKey);
if (value) return value;
}

@@ -264,0 +271,0 @@

2

package.json
{
"name": "fulcrum-core",
"version": "0.12.8",
"version": "0.12.9",
"description": "Fulcrum Core",

@@ -5,0 +5,0 @@ "homepage": "http://github.com/fulcrumapp/fulcrum-core",

@@ -194,2 +194,10 @@ import TextUtils from '../utils/text-utils';

}
// Also search repeatables for fieldKey as it may exist in a nested object
for (let i = 0; i < values.repeatableItems.length; i++) {
const formValues = values.repeatableItems[i]._formValues;
const value = formValues.get(condition.fieldKey);
if (value) return value;
}
return values.get(condition.fieldKey);

@@ -196,0 +204,0 @@ }

Sorry, the diff of this file is not supported yet

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