sr-npm 1.7.1014 → 1.7.1016

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": "sr-npm",
3
- "version": "1.7.1014",
3
+ "version": "1.7.1016",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -142,8 +142,7 @@ async function handleParams(_$w,param,values) {
142
142
  console.log("selectedIndices after for loop: ",selectedIndices);
143
143
  selectedByField.set(field._id, existing);
144
144
  _$w(`#${FiltersIds[field.title]}CheckBox`).selectedIndices=selectedIndices;
145
-
146
- return applyFiltering;
145
+ return applyFiltering;
147
146
  }
148
147
 
149
148
  function loadPaginationButtons(_$w) {
@@ -345,6 +344,9 @@ async function loadJobsRepeater(_$w) {
345
344
  }
346
345
 
347
346
  function getValueFromValueId(valueIds,value) {
347
+ console.log("inside getValueFromValueId")
348
+ console.log("valueIds: ",valueIds);
349
+ console.log(" value: ",value);
348
350
  let valueLabels=[];
349
351
  let currentVal
350
352
  for(const valueId of valueIds) {
@@ -353,7 +355,7 @@ function getValueFromValueId(valueIds,value) {
353
355
  valueLabels.push(currentVal.label);
354
356
  }
355
357
  }
356
-
358
+ console.log("valueLabels: ",valueLabels);
357
359
  return valueLabels
358
360
  }
359
361