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

@zenginehq/frontend-config

Package Overview
Dependencies
Maintainers
7
Versions
42
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@zenginehq/frontend-config - npm Package Compare versions

Comparing version 3.17.2 to 3.17.3

2

package.json
{
"name": "@zenginehq/frontend-config",
"version": "3.17.2",
"version": "3.17.3",
"description": "Helper module for implementing Zengine plugin configuration forms.",

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

@@ -633,3 +633,10 @@ plugin.controller('wgnConfigCtrl', ['$scope', '$q', '$routeParams', 'znData', 'znModal', 'znMessage', 'wgnConfigSrv',

if ('settings' in field && 'properties' in field.settings && 'choices' in field.settings.properties) {
f.choices = field.settings.properties.choices;
var choices = [];
angular.forEach(field.settings.properties.choices, function (label, value) {
choices.push({
label: label,
value: value
});
});
f.choices = choices;
}

@@ -636,0 +643,0 @@

Sorry, the diff of this file is too big to display

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