sr-npm 1.7.623 → 1.7.624
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
|
@@ -29,6 +29,7 @@ async function careersMultiBoxesPageOnReady(_$w) {
|
|
|
29
29
|
|
|
30
30
|
// Deselect this value from both the selected map and the multibox
|
|
31
31
|
$item(CAREERS_MULTI_BOXES_PAGE_CONSTS.DESELECT_BUTTON_ID).onClick(async () => {
|
|
32
|
+
console.log("deselecting value: ",itemData)
|
|
32
33
|
const fieldId = itemData.fieldId;
|
|
33
34
|
const valueId = itemData.valueId;
|
|
34
35
|
if (!fieldId || !valueId) return;
|
|
@@ -265,6 +266,7 @@ async function refreshFacetCounts(_$w) {
|
|
|
265
266
|
selectedItems.push({ label, fieldId, _id: id }); //_id is the valueId
|
|
266
267
|
}
|
|
267
268
|
}
|
|
269
|
+
console.log("selectedItems inside updateSelectedValuesRepeater: ",selectedItems)
|
|
268
270
|
_$w(CAREERS_MULTI_BOXES_PAGE_CONSTS.SELECTED_VALUES_REPEATER).data = selectedItems;
|
|
269
271
|
}
|
|
270
272
|
|