@omniumretail/component-library 1.1.87 → 1.1.88

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@omniumretail/component-library",
3
- "version": "1.1.87",
3
+ "version": "1.1.88",
4
4
  "private": false,
5
5
  "main": "dist/bundle.js",
6
6
  "typings": "./dist/types/index",
@@ -128,7 +128,7 @@ Primary.args = {
128
128
  "Description": "This is a description ",
129
129
  "Grade": "0",
130
130
  "Note": "asasas",
131
- "Answer": [],
131
+ "Answer": ["1725058800"],
132
132
  "IsDate": true
133
133
  }
134
134
  ]
@@ -120,6 +120,7 @@ export const CategoryResponse = React.forwardRef((props: CategoryResponse, ref)
120
120
  IsYesOrNo: IsYesOrNo
121
121
  };
122
122
 
123
+ console.log(initial, "initial");
123
124
  setInitialValues(initial);
124
125
  form.setFieldsValue(initial);
125
126
  };
@@ -197,6 +198,10 @@ export const CategoryResponse = React.forwardRef((props: CategoryResponse, ref)
197
198
 
198
199
  const updatedLocalData = { ...localData, CategoryAnswers: updatedCategory };
199
200
 
201
+ console.log(updatedLocalData, "updatedLocalData");
202
+ console.log(updatedCategory, "updatedCategory");
203
+ console.log(updatedQuestions, "updatedQuestions");
204
+
200
205
  setLocalData(updatedLocalData);
201
206
  };
202
207