sr-npm 1.7.950 → 1.7.952

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.950",
3
+ "version": "1.7.952",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -13,7 +13,7 @@ async function bindBoardPeopleRepeaters(_$w) {
13
13
  const $item = _$w.at(event.context);
14
14
  const clickedItemData = $item('#dynamicDataset').getCurrentItem();
15
15
  console.log("clickedItemData: ",clickedItemData);
16
- location.to(`/board-people/${clickedItemData['link-board-people-title_fld']}`);
16
+ location.to(`/${clickedItemData['link-board-people-title_fld']}`);
17
17
 
18
18
  });
19
19
 
@@ -21,7 +21,7 @@ async function bindBoardPeopleRepeaters(_$w) {
21
21
  const $item = _$w.at(event.context);
22
22
  const clickedItemData = $item('#dataset1').getCurrentItem();
23
23
  console.log("clickedItemData: ",clickedItemData);
24
- location.to(`/board-people/${clickedItemData['link-board-people-title_fld']}`);
24
+ location.to(`/${clickedItemData['link-board-people-title_fld']}`);
25
25
 
26
26
  });
27
27
  }
@@ -63,9 +63,10 @@ async function handleRecentJobsSection(_$w) {
63
63
  return;
64
64
  }
65
65
  const latestsJobs=await getLatestJobsByValue(Value);
66
-
66
+ console.log("latestsJobs: ",latestsJobs);
67
67
 
68
68
  _$w(supportTeamsPageIds.RECENT_JOBS_REPEATER).onItemReady(($item, itemData) => {
69
+ console.log("itemData: ",itemData);
69
70
  $item(supportTeamsPageIds.JOB_TITLE).text = itemData.title;
70
71
  $item(supportTeamsPageIds.JOB_LOCATION).text = itemData.location.fullLocation;
71
72