@bigbinary/neeto-tags-frontend 0.0.26 → 0.0.27
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 +6 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3507,7 +3507,11 @@ var renderColumnData = function renderColumnData(columns, handleEdit, handleDele
|
|
|
3507
3507
|
id: "actions",
|
|
3508
3508
|
width: "10%",
|
|
3509
3509
|
render: function render(_, tag) {
|
|
3510
|
-
return /*#__PURE__*/React.createElement(
|
|
3510
|
+
return /*#__PURE__*/React.createElement("div", {
|
|
3511
|
+
onClick: function onClick(e) {
|
|
3512
|
+
return e.stopPropagation();
|
|
3513
|
+
}
|
|
3514
|
+
}, /*#__PURE__*/React.createElement(Dropdown, {
|
|
3511
3515
|
icon: MenuHorizontal,
|
|
3512
3516
|
buttonProps: {
|
|
3513
3517
|
style: "text"
|
|
@@ -3535,7 +3539,7 @@ var renderColumnData = function renderColumnData(columns, handleEdit, handleDele
|
|
|
3535
3539
|
style: "danger-text",
|
|
3536
3540
|
className: "neeto-tag-dropdown__button",
|
|
3537
3541
|
"data-cy": "tags-delete-button"
|
|
3538
|
-
})));
|
|
3542
|
+
}))));
|
|
3539
3543
|
}
|
|
3540
3544
|
}]);
|
|
3541
3545
|
};
|