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

admin-config

Package Overview
Dependencies
Maintainers
3
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

admin-config - npm Package Compare versions

Comparing version 0.12.1 to 0.12.2

2

lib/View/MenuView.js

@@ -50,3 +50,3 @@ 'use strict';

get: function () {
return this._enabled || this.entity.views['ListView'].enabled;
return this._enabled === null ? this.entity._views['ListView'].enabled : this._enabled;
}

@@ -53,0 +53,0 @@ }]);

@@ -33,3 +33,3 @@ 'use strict';

this._enabled = false;
this._enabled = null;
this._fields = [];

@@ -356,3 +356,3 @@ this._type = null;

get: function () {
return this._enabled || !!this._fields.length;
return this._enabled === null ? !!this._fields.length : this._enabled;
}

@@ -359,0 +359,0 @@ }, {

{
"name": "admin-config",
"version": "0.12.1",
"version": "0.12.2",
"private": false,

@@ -5,0 +5,0 @@ "files": [

Sorry, the diff of this file is not supported yet

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