sr-npm 1.7.146 → 1.7.148
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 +4 -3
package/package.json
CHANGED
package/pages/careersPage.js
CHANGED
|
@@ -224,7 +224,8 @@ async function applyFilters(_$w, skipUrlUpdate = false) {
|
|
|
224
224
|
});
|
|
225
225
|
|
|
226
226
|
const filter = await getFilter(filters, 'and');
|
|
227
|
-
|
|
227
|
+
console.log("filter", filter);
|
|
228
|
+
debugger;
|
|
228
229
|
await _$w('#jobsDataset').setFilter(filter);
|
|
229
230
|
await _$w('#jobsDataset').refresh();
|
|
230
231
|
|
|
@@ -276,8 +277,8 @@ async function handleDepartmentParam(_$w,department) {
|
|
|
276
277
|
console.log("before applyFilters_$w('#dropdownDepartment').value", _$w('#dropdownDepartment').value);
|
|
277
278
|
|
|
278
279
|
await applyFilters(_$w, true); // Skip URL update since we're handling initial URL params
|
|
279
|
-
|
|
280
|
-
|
|
280
|
+
// console.log("url", url);
|
|
281
|
+
// await to(url);
|
|
281
282
|
}
|
|
282
283
|
|
|
283
284
|
|