sr-npm 1.7.1345 → 1.7.1348

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/backend/data.js CHANGED
@@ -18,7 +18,8 @@ let locationToJobs = {}
18
18
  let siteconfig;
19
19
  let customFieldsLabels = {}
20
20
  let customFieldsValues = {}
21
- const EXCLUDED_CUSTOM_FIELDS = new Set(["Department","Country"]);
21
+ const EXCLUDED_CUSTOM_FIELDS = new Set(["Department","Country/Region"]);
22
+
22
23
 
23
24
  function getBrand(customField) {
24
25
  return customField.find(field => field.fieldLabel === 'Brands')?.valueLabel;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sr-npm",
3
- "version": "1.7.1345",
3
+ "version": "1.7.1348",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -81,7 +81,7 @@ async function handleSearchInput(_$w) {
81
81
  await queryPrimarySearchResults(_$w, getSearchQuery(_$w));
82
82
  }
83
83
 
84
- const primarySearchDebounced = debounce(() => callQueryPrimarySearchResults(), 150);
84
+ const primarySearchDebounced = debounce(() => callQueryPrimarySearchResults(), 300);
85
85
 
86
86
  _$w(CAREERS_MULTI_BOXES_PAGE_CONSTS.PRIMARY_SEARCH_INPUT).onInput(primarySearchDebounced);
87
87