From 043c5aafc56b7828a6cd80df15c35ee12d8fe282 Mon Sep 17 00:00:00 2001 From: Du Peng Date: Tue, 29 Mar 2022 17:01:06 +0200 Subject: [PATCH] Fix a bug: unable to show payment schedules list if active PayZen --- CHANGELOG.md | 4 +++- .../javascript/components/payment/stripe/stripe-elements.tsx | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cf51ef2bb..2f5e16530 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,13 @@ # Changelog Fab-manager +- Fix a bug: unable to show payment schedules list if active PayZen + ## v5.3.7 2022 March 28 - Updated Spanish translations (thanks to [@altieriranedo](https://crowdin.com/profile/altieriranedo)) - Fix a security issue: updated minimist to 1.2.6 to fix [CVE-2021-44906](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44906) - Fix a security issue: updated node-forge to 1.3.0 to fix [CVE-2022-24771](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-24771), [CVE-2022-24772](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-24772) and [CVE-2022-24773](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-24773) - + ## v5.3.6 2022 March 24 - Support for Google Analytics V4 diff --git a/app/frontend/src/javascript/components/payment/stripe/stripe-elements.tsx b/app/frontend/src/javascript/components/payment/stripe/stripe-elements.tsx index 68a912733..7d6f1f07b 100644 --- a/app/frontend/src/javascript/components/payment/stripe/stripe-elements.tsx +++ b/app/frontend/src/javascript/components/payment/stripe/stripe-elements.tsx @@ -27,6 +27,7 @@ export const StripeElements: React.FC = memo(({ children }) => { {stripe && {children} } + {!stripe && children} ); });