sr-npm 1.7.134 → 1.7.136
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 +1 -2
package/package.json
CHANGED
package/pages/careersPage.js
CHANGED
|
@@ -22,8 +22,6 @@ queryPageVar=query.page;
|
|
|
22
22
|
queryKeyWordVar=query.keyWord;
|
|
23
23
|
queryDepartmentVar=query.department;
|
|
24
24
|
console.log("query", query);
|
|
25
|
-
console.log("query.department", query.department);
|
|
26
|
-
console.log("queryDepartmentVar", queryDepartmentVar);
|
|
27
25
|
thisObjectVar=thisObject;
|
|
28
26
|
allJobs=await getAllPositions();
|
|
29
27
|
await handleUrlParams(_$w);
|
|
@@ -258,6 +256,7 @@ async function handleDepartmentParam(_$w,department) {
|
|
|
258
256
|
// _$w('#dropdownDepartment').value = department.replace('-', ' ');
|
|
259
257
|
_$w("#dataset2").onReady(async () => {
|
|
260
258
|
_$w('#dataset2').setFieldValue("title", department.replace('-', ' '));
|
|
259
|
+
await _$w('#dataset2').save();
|
|
261
260
|
|
|
262
261
|
await applyFilters(_$w);
|
|
263
262
|
});
|