abmp-npm 10.3.11 → 10.3.12
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/personalDetails.js +4 -1
package/package.json
CHANGED
package/pages/personalDetails.js
CHANGED
|
@@ -1077,7 +1077,10 @@ async function personalDetailsOnReady({
|
|
|
1077
1077
|
}
|
|
1078
1078
|
|
|
1079
1079
|
function renderServices() {
|
|
1080
|
-
|
|
1080
|
+
// Pass a fresh array copy so the Wix repeater detects the change and
|
|
1081
|
+
// re-renders. Assigning the same array reference (mutated in place by
|
|
1082
|
+
// add/delete) is treated as a no-op, leaving stale chips on screen.
|
|
1083
|
+
setupRepeater('#servicesRepeater', [...selectedServices]);
|
|
1081
1084
|
}
|
|
1082
1085
|
|
|
1083
1086
|
function setupRepeater(repeaterId, data) {
|