@apexcura/ui-components 0.0.16-Beta63 → 0.0.16-Beta65
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 +1 -2
- package/dist/index.mjs +1 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -788,8 +788,7 @@ var Sidebar = (props) => {
|
|
|
788
788
|
...item,
|
|
789
789
|
className: item.active ? props.activeClassName : props.className,
|
|
790
790
|
iconsClassName: props.iconsClassName,
|
|
791
|
-
onClick: (
|
|
792
|
-
e.preventDefault();
|
|
791
|
+
onClick: () => {
|
|
793
792
|
handleChange(item);
|
|
794
793
|
}
|
|
795
794
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -716,8 +716,7 @@ var Sidebar = (props) => {
|
|
|
716
716
|
...item,
|
|
717
717
|
className: item.active ? props.activeClassName : props.className,
|
|
718
718
|
iconsClassName: props.iconsClassName,
|
|
719
|
-
onClick: (
|
|
720
|
-
e.preventDefault();
|
|
719
|
+
onClick: () => {
|
|
721
720
|
handleChange(item);
|
|
722
721
|
}
|
|
723
722
|
}
|