From 3f9d61ca99488f6b47a8568a667cc543a26e6a58 Mon Sep 17 00:00:00 2001 From: Eduard Heimbuch Date: Wed, 19 Feb 2020 08:48:51 +0100 Subject: [PATCH] inject props to each extension --- scm-ui/ui-components/src/layout/Footer.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scm-ui/ui-components/src/layout/Footer.tsx b/scm-ui/ui-components/src/layout/Footer.tsx index 63e294bb01..a74551198a 100644 --- a/scm-ui/ui-components/src/layout/Footer.tsx +++ b/scm-ui/ui-components/src/layout/Footer.tsx @@ -17,7 +17,8 @@ class Footer extends React.Component { return ""; } - const extensions = binder.getExtensions("footer.links", { me, links }); + const extensionProps = { me, links }; + const extensions = binder.getExtensions("footer.links", extensionProps); return (