We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6580d14 commit 08dd3eaCopy full SHA for 08dd3ea
1 file changed
src/app/new.state/xml/xml.util.ts
@@ -120,13 +120,17 @@ export function changeWeightForSelectedVariables(
120
frequencyTableForSelectedVariables[variableID] = frequencyTable;
121
});
122
123
+ console.log(
124
+ frequencyTableForSelectedVariables,
125
+ 'frequencyTableForSelectedVariables',
126
+ );
127
Object.keys(frequencyTableForSelectedVariables).forEach((variableID) => {
128
if (duplicateVariables[variableID]) {
129
const currentCategories = duplicateVariables[variableID].catgry;
130
if (currentCategories && Array.isArray(currentCategories)) {
131
+ console.log(currentCategories, 'currentCategories');
132
currentCategories.map((category) => {
133
if (Array.isArray(category.catStat)) {
- console.log(category.catStat);
134
category.catStat = [
135
category.catStat[0],
136
{
0 commit comments