@thecb/components 5.8.2-beta.3 → 5.8.2-beta.4
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/dist/index.cjs.js +7 -4
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +7 -4
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/molecules/obligation/Obligation.js +2 -0
- package/src/components/molecules/obligation/modules/PaymentDetailsActions.js +3 -2
package/package.json
CHANGED
|
@@ -116,6 +116,7 @@ const Obligation = ({
|
|
|
116
116
|
isMobile={isMobile}
|
|
117
117
|
isPaymentPlan={isPaymentPlan}
|
|
118
118
|
nextAutopayDate={nextAutopayDate}
|
|
119
|
+
obligationAssocID={obligationAssocID}
|
|
119
120
|
/>
|
|
120
121
|
)}
|
|
121
122
|
</Stack>
|
|
@@ -135,6 +136,7 @@ const Obligation = ({
|
|
|
135
136
|
isMobile={isMobile}
|
|
136
137
|
isPaymentPlan={isPaymentPlan}
|
|
137
138
|
nextAutopayDate={nextAutopayDate}
|
|
139
|
+
obligationAssocID={obligationAssocID}
|
|
138
140
|
/>
|
|
139
141
|
)}
|
|
140
142
|
</Box>
|
|
@@ -18,7 +18,8 @@ const PaymentDetailsActions = ({
|
|
|
18
18
|
autoPaySchedule,
|
|
19
19
|
paymentPlanSchedule,
|
|
20
20
|
isPaymentPlan,
|
|
21
|
-
nextAutopayDate
|
|
21
|
+
nextAutopayDate,
|
|
22
|
+
obligationAssocID
|
|
22
23
|
}) => {
|
|
23
24
|
const planType = isPaymentPlan ? "Payment Plan" : "Autopay";
|
|
24
25
|
const [isLoading, setIsLoading] = useState(false);
|
|
@@ -38,7 +39,7 @@ const PaymentDetailsActions = ({
|
|
|
38
39
|
createPaymentFromProfile(obligations, config);
|
|
39
40
|
};
|
|
40
41
|
const handleDetailsClick = () => {
|
|
41
|
-
setDetailedObligation(obligations, config);
|
|
42
|
+
setDetailedObligation(obligations, config, obligationAssocID);
|
|
42
43
|
navigateToDetailedObligation(detailsSlug);
|
|
43
44
|
};
|
|
44
45
|
return (
|