sr-npm 1.7.132 → 1.7.134
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 +5 -1
package/package.json
CHANGED
package/pages/careersPage.js
CHANGED
|
@@ -255,8 +255,12 @@ async function updateCount(_$w) {
|
|
|
255
255
|
|
|
256
256
|
async function handleDepartmentParam(_$w,department) {
|
|
257
257
|
console.log("department inside handleDepartmentParam", department.replace('-', ' '));
|
|
258
|
-
|
|
258
|
+
// _$w('#dropdownDepartment').value = department.replace('-', ' ');
|
|
259
|
+
_$w("#dataset2").onReady(async () => {
|
|
260
|
+
_$w('#dataset2').setFieldValue("title", department.replace('-', ' '));
|
|
261
|
+
|
|
259
262
|
await applyFilters(_$w);
|
|
263
|
+
});
|
|
260
264
|
}
|
|
261
265
|
|
|
262
266
|
|