config-editor-base 1.6.7 → 1.6.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +4 -2
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -18164,7 +18164,9 @@ function EditorNavs(_ref) {
|
|
|
18164
18164
|
name = _ref3.name,
|
|
18165
18165
|
icon = _ref3.icon,
|
|
18166
18166
|
isActive = _ref3.isActive;
|
|
18167
|
-
return
|
|
18167
|
+
return nav !== "GEOFENCE" ?
|
|
18168
|
+
/*#__PURE__*/
|
|
18169
|
+
React.createElement("li", {
|
|
18168
18170
|
key: i,
|
|
18169
18171
|
onClick: function onClick() {
|
|
18170
18172
|
return onNavChange(nav);
|
|
@@ -18175,7 +18177,7 @@ function EditorNavs(_ref) {
|
|
|
18175
18177
|
}, icon && /*#__PURE__*/React.createElement("span", {
|
|
18176
18178
|
className: icon,
|
|
18177
18179
|
"aria-hidden": "true"
|
|
18178
|
-
}), "\xA0", name || nav));
|
|
18180
|
+
}), "\xA0", name || nav)) : null;
|
|
18179
18181
|
}))))));
|
|
18180
18182
|
}
|
|
18181
18183
|
|