eleven-solutions-common-website-unique-web 9.0.54 → 9.0.55
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.
|
@@ -152,8 +152,7 @@ const TaxonomyForm = () => {
|
|
|
152
152
|
yield addTaxonomyApi(inputType, Number(code), value);
|
|
153
153
|
alert("Taxonomy added successfully");
|
|
154
154
|
}
|
|
155
|
-
|
|
156
|
-
window.history.pushState({}, "", "/admin/taxinomies");
|
|
155
|
+
window.location.href = "/admin/taxinomies";
|
|
157
156
|
}
|
|
158
157
|
catch (error) {
|
|
159
158
|
console.error("Error adding/updating Taxonomy:", error);
|
package/package.json
CHANGED
|
@@ -188,8 +188,7 @@ const TaxonomyForm = () => {
|
|
|
188
188
|
await addTaxonomyApi(inputType, Number(code), value);
|
|
189
189
|
alert("Taxonomy added successfully");
|
|
190
190
|
}
|
|
191
|
-
|
|
192
|
-
window.history.pushState({}, "", "/admin/taxinomies");
|
|
191
|
+
window.location.href = "/admin/taxinomies";
|
|
193
192
|
} catch (error) {
|
|
194
193
|
console.error("Error adding/updating Taxonomy:", error);
|
|
195
194
|
alert("Failed to add/update Taxonomy");
|