eleven-solutions-common-website-unique-web 4.0.34 → 4.0.36

Sign up to get free protection for your applications and to get access to all the features.
@@ -186,6 +186,7 @@ const TaxonomyForm = () => {
186
186
  setIsModalOpen(true);
187
187
  };
188
188
  const handleEditClick = (index, id) => {
189
+ setIsAddingSubType(false);
189
190
  const item = similarTaxonomies[index];
190
191
  setSelectedTaxonomyId(id);
191
192
  setEditTaxonomyItem(item);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eleven-solutions-common-website-unique-web",
3
- "version": "4.0.34",
3
+ "version": "4.0.36",
4
4
  "main": "./dist/index.js",
5
5
  "scripts": {
6
6
  "build": "tsc",
@@ -230,6 +230,8 @@ const TaxonomyForm = () => {
230
230
  };
231
231
 
232
232
  const handleEditClick = (index: number, id: string) => {
233
+ setIsAddingSubType(false);
234
+
233
235
  const item = similarTaxonomies[index];
234
236
  setSelectedTaxonomyId(id);
235
237