sr-npm 1.7.357 → 1.7.358

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.357",
3
+ "version": "1.7.358",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -493,10 +493,10 @@ async function handleJobTypeParam(_$w,jobType) {
493
493
  let dropdownOptions = _$w('#dropdownJobType').options;
494
494
  console.log("jobType dropdown options:", dropdownOptions);
495
495
  let option;
496
- if(jobTypeValue.toLocaleLowerCase==="remote"){
496
+ if(jobTypeValue.toLowerCase()==="remote"){
497
497
  option="true";
498
498
  }
499
- if(jobTypeValue.toLocaleLowerCase==="onsite"){
499
+ if(jobTypeValue.toLowerCase()==="onsite"){
500
500
  option="false";
501
501
  }
502
502
  //const option=_$w('#dropdownJobType').options.find(option => option.value.toLowerCase() === jobTypeValue.toLowerCase())