sr-npm 1.7.289 → 1.7.290
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 +8 -0
package/package.json
CHANGED
package/pages/careersPage.js
CHANGED
|
@@ -344,6 +344,14 @@ async function handleLocationParam(_$w,location) {
|
|
|
344
344
|
console.log("dropdown options after fix: ", _$w('#dropdownLocation').options);
|
|
345
345
|
|
|
346
346
|
let appliedFilter=false;
|
|
347
|
+
let checkme;
|
|
348
|
+
console.log("location value is: ", locationValue);
|
|
349
|
+
if (_$w('#dropdownLocation').options.find(option => option.value.toLowerCase() === locationValue.toLowerCase()))
|
|
350
|
+
{
|
|
351
|
+
checkme=option;
|
|
352
|
+
}
|
|
353
|
+
console.log("checkme is: ", checkme);
|
|
354
|
+
|
|
347
355
|
|
|
348
356
|
_$w('#dropdownLocation').options.find(async (option) =>
|
|
349
357
|
{
|