admin-config
Advanced tools
Comparing version 0.12.1 to 0.12.2
@@ -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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
370249
0