@7shifts/sous-chef 3.13.2 → 3.13.3
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.modern.js
CHANGED
|
@@ -5682,8 +5682,10 @@ var KebabMenu = function KebabMenu(_ref) {
|
|
|
5682
5682
|
theme: "link-icon"
|
|
5683
5683
|
}, React__default.createElement(IconEllipsisV, null)),
|
|
5684
5684
|
alignment: "right"
|
|
5685
|
-
}, React__default.createElement(DropdownList, null, actions.
|
|
5686
|
-
return !action.hidden
|
|
5685
|
+
}, React__default.createElement(DropdownList, null, actions.filter(function (action) {
|
|
5686
|
+
return !action.hidden;
|
|
5687
|
+
}).map(function (action) {
|
|
5688
|
+
return React__default.createElement(DropdownListItem, {
|
|
5687
5689
|
onClick: action.onAction,
|
|
5688
5690
|
key: action.action
|
|
5689
5691
|
}, action.label);
|