catchup-library-web 1.0.21 → 1.0.22
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/index.js
CHANGED
|
@@ -5977,13 +5977,14 @@ var ActivityPreviewByData = ({
|
|
|
5977
5977
|
if (showTaxonomy) {
|
|
5978
5978
|
setOptionList(
|
|
5979
5979
|
typeOptionList.map((typeOption) => __spreadProps(__spreadValues({}, typeOption), {
|
|
5980
|
-
|
|
5980
|
+
subText: retrieveTaxonomyNameByActivityTypeFromData(typeOption)
|
|
5981
5981
|
}))
|
|
5982
5982
|
);
|
|
5983
5983
|
} else {
|
|
5984
5984
|
setOptionList(typeOptionList);
|
|
5985
5985
|
}
|
|
5986
5986
|
}, [data, typeOptionList, showTaxonomy]);
|
|
5987
|
+
console.log(optionList);
|
|
5987
5988
|
if (!data) return;
|
|
5988
5989
|
const answer = constructAnswerBasedOnData(data);
|
|
5989
5990
|
return /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(import_jsx_runtime41.Fragment, { children: [
|
package/dist/index.mjs
CHANGED
|
@@ -5803,13 +5803,14 @@ var ActivityPreviewByData = ({
|
|
|
5803
5803
|
if (showTaxonomy) {
|
|
5804
5804
|
setOptionList(
|
|
5805
5805
|
typeOptionList.map((typeOption) => __spreadProps(__spreadValues({}, typeOption), {
|
|
5806
|
-
|
|
5806
|
+
subText: retrieveTaxonomyNameByActivityTypeFromData(typeOption)
|
|
5807
5807
|
}))
|
|
5808
5808
|
);
|
|
5809
5809
|
} else {
|
|
5810
5810
|
setOptionList(typeOptionList);
|
|
5811
5811
|
}
|
|
5812
5812
|
}, [data, typeOptionList, showTaxonomy]);
|
|
5813
|
+
console.log(optionList);
|
|
5813
5814
|
if (!data) return;
|
|
5814
5815
|
const answer = constructAnswerBasedOnData(data);
|
|
5815
5816
|
return /* @__PURE__ */ jsxs32(Fragment9, { children: [
|
package/package.json
CHANGED
|
@@ -74,7 +74,7 @@ const ActivityPreviewByData = ({
|
|
|
74
74
|
setOptionList(
|
|
75
75
|
typeOptionList.map((typeOption) => ({
|
|
76
76
|
...typeOption,
|
|
77
|
-
|
|
77
|
+
subText: retrieveTaxonomyNameByActivityTypeFromData(typeOption),
|
|
78
78
|
}))
|
|
79
79
|
);
|
|
80
80
|
} else {
|
|
@@ -82,6 +82,8 @@ const ActivityPreviewByData = ({
|
|
|
82
82
|
}
|
|
83
83
|
}, [data, typeOptionList, showTaxonomy]);
|
|
84
84
|
|
|
85
|
+
console.log(optionList);
|
|
86
|
+
|
|
85
87
|
if (!data) return;
|
|
86
88
|
const answer = constructAnswerBasedOnData(data);
|
|
87
89
|
|