sr-npm 1.7.741 → 1.7.742

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.741",
3
+ "version": "1.7.742",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -296,7 +296,8 @@ async function loadJobsRepeater(_$w) {
296
296
 
297
297
  async function applyJobFilters(_$w) {
298
298
  let tempFilteredJobs=[];
299
- let finalFilteredJobs=alljobs;
299
+ let finalFilteredJobs=[];
300
+ secondarySearchIsFilled? finalFilteredJobs=secondarySearchJobs:finalFilteredJobs=alljobs;
300
301
  let addedJobsIds=[]
301
302
  // AND across categories, OR within each category
302
303
  for (const [key, values] of selectedByField.entries()) {