@star-insure/sdk 3.2.4 → 3.2.5
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/sdk.cjs.development.js +8 -2
- package/dist/sdk.cjs.development.js.map +1 -1
- package/dist/sdk.cjs.production.min.js +1 -1
- package/dist/sdk.cjs.production.min.js.map +1 -1
- package/dist/sdk.esm.js +8 -2
- package/dist/sdk.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/filter/Action.tsx +2 -2
|
@@ -2419,7 +2419,10 @@ function Action(_ref) {
|
|
|
2419
2419
|
if (as === 'Link' && href) {
|
|
2420
2420
|
return React__default.createElement(react.Link, {
|
|
2421
2421
|
className: className,
|
|
2422
|
-
href: href
|
|
2422
|
+
href: href,
|
|
2423
|
+
onClick: function onClick() {
|
|
2424
|
+
return _onClick();
|
|
2425
|
+
}
|
|
2423
2426
|
}, title);
|
|
2424
2427
|
}
|
|
2425
2428
|
|
|
@@ -2427,7 +2430,10 @@ function Action(_ref) {
|
|
|
2427
2430
|
return React__default.createElement("a", {
|
|
2428
2431
|
className: className,
|
|
2429
2432
|
target: target,
|
|
2430
|
-
href: href
|
|
2433
|
+
href: href,
|
|
2434
|
+
onClick: function onClick() {
|
|
2435
|
+
return _onClick();
|
|
2436
|
+
}
|
|
2431
2437
|
}, title);
|
|
2432
2438
|
}
|
|
2433
2439
|
|