sr-npm 1.7.603 → 1.7.604
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/backend/data.js
CHANGED
|
@@ -198,7 +198,6 @@ async function populateCustomValuesCollection(customFieldsValues) {
|
|
|
198
198
|
totalJobs:customValuesToJobs[valueId].length,
|
|
199
199
|
jobIds:customValuesToJobs[valueId],
|
|
200
200
|
})
|
|
201
|
-
console.log("customValuesToJobs[valueId]",customValuesToJobs[valueId])
|
|
202
201
|
}
|
|
203
202
|
|
|
204
203
|
}
|
package/package.json
CHANGED
|
@@ -45,14 +45,11 @@ async function careersMultiBoxesPageOnReady(_$w) {
|
|
|
45
45
|
});
|
|
46
46
|
updateSelectedValuesRepeater(_$w);
|
|
47
47
|
if(alljobs.length===0) {
|
|
48
|
-
|
|
49
|
-
alljobs=alljobsresult.items;
|
|
48
|
+
alljobs=await getAllRecords(COLLECTIONS.JOBS);
|
|
50
49
|
}
|
|
51
50
|
if(valueToJobs.size===0) {
|
|
52
51
|
allvaluesobjects=await getAllRecords(COLLECTIONS.CUSTOM_VALUES);
|
|
53
|
-
console.log("allvaluesobjects@@@@@@@@@@@@@: ",allvaluesobjects)
|
|
54
52
|
for (const value of allvaluesobjects) {
|
|
55
|
-
console.log("value@@@@@@@@@@@@@: ",value)
|
|
56
53
|
valueToJobs[value._id]= value.jobIds;
|
|
57
54
|
}
|
|
58
55
|
}
|