sr-npm 1.7.770 → 1.7.771

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sr-npm",
3
- "version": "1.7.770",
3
+ "version": "1.7.771",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -198,9 +198,13 @@ async function loadData(_$w) {
198
198
  }
199
199
  async function loadJobsRepeater(_$w) {
200
200
  _$w(CAREERS_MULTI_BOXES_PAGE_CONSTS.JOBS_REPEATER).onItemReady(($item, itemData) => {
201
- $item(CAREERS_MULTI_BOXES_PAGE_CONSTS.JOBS_REPEATER_ITEM_TITLE).text = itemData.title || '';
201
+ $item(CAREERS_MULTI_BOXES_PAGE_CONSTS.JOBS_REPEATER_ITEM_TITLE).text = itemData.title;
202
+ $item(CAREERS_MULTI_BOXES_PAGE_CONSTS.JOBS_REPEATER_ITEM_TITLE).onClick(async () => {
203
+ await location.to(itemData["link-jobs-title"]);
204
+ });
202
205
  $item(CAREERS_MULTI_BOXES_PAGE_CONSTS.JOBS_REPEATER_ITEM_LOCATION).text=itemData.location.fullLocation
203
206
  $item(CAREERS_MULTI_BOXES_PAGE_CONSTS.JOBS_REPEATER_ITEM_EMPLOYMENT_TYPE).text=itemData.employmentType
207
+
204
208
  });
205
209
 
206
210
  const jobsFirstPage=alljobs.slice(0,pagination.pageSize);