contentoh-components-library 21.4.131 → 21.4.132
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.
|
@@ -174,8 +174,9 @@ var MultipleEdition = function MultipleEdition(_ref) {
|
|
|
174
174
|
src: _closeMagenta.default,
|
|
175
175
|
alt: "Cerrar",
|
|
176
176
|
onClick: function onClick() {
|
|
177
|
-
|
|
178
|
-
}
|
|
177
|
+
window.location.href = "/products";
|
|
178
|
+
} //onClick={() => onClose && onClose()}
|
|
179
|
+
|
|
179
180
|
}), " "]
|
|
180
181
|
}), " ", /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
|
|
181
182
|
className: "table",
|
package/package.json
CHANGED
|
@@ -111,7 +111,10 @@ export const MultipleEdition = ({ articles, versions, onClose, token }) => {
|
|
|
111
111
|
<img
|
|
112
112
|
src={closeMagenta}
|
|
113
113
|
alt="Cerrar"
|
|
114
|
-
onClick={() =>
|
|
114
|
+
onClick={() => {
|
|
115
|
+
window.location.href = `/products`;
|
|
116
|
+
}}
|
|
117
|
+
//onClick={() => onClose && onClose()}
|
|
115
118
|
/>{" "}
|
|
116
119
|
</div>{" "}
|
|
117
120
|
<div className="table">
|