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 +1 -1
- package/pages/careersPage.js +2 -2
package/package.json
CHANGED
package/pages/careersPage.js
CHANGED
|
@@ -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.
|
|
496
|
+
if(jobTypeValue.toLowerCase()==="remote"){
|
|
497
497
|
option="true";
|
|
498
498
|
}
|
|
499
|
-
if(jobTypeValue.
|
|
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())
|