sr-npm 1.7.1023 → 1.7.1024

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.1023",
3
+ "version": "1.7.1024",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -61,6 +61,7 @@ async function handleUrlParams(_$w,urlParams) {
61
61
  console.log("currentJobs: ",currentJobs);
62
62
  console.log("currentJobs.length: ",currentJobs.length);
63
63
  let applyFiltering=false;
64
+ let currentApplyFilterFlag=false;
64
65
 
65
66
  //apply this first to determine all jobs
66
67
  if(urlParams.keyword) {
@@ -79,9 +80,12 @@ async function handleUrlParams(_$w,urlParams) {
79
80
  if(urlParams[url])
80
81
  {
81
82
  console.log("urlParams[url]: ",urlParams[url])
82
- applyFiltering=await handleParams(_$w,url,urlParams[url])
83
-
83
+ currentApplyFilterFlag=await handleParams(_$w,url,urlParams[url])
84
+ if(currentApplyFilterFlag) {
85
+ applyFiltering=true;
86
+ }
84
87
  }
88
+ currentApplyFilterFlag=false;
85
89
  }
86
90
  if(applyFiltering || keywordAllJobs) {
87
91
  await updateJobsAndNumbersAndFilters(_$w);