diff options
Diffstat (limited to 'server/sonar-web/src/main/js/app/components/extensions/OrganizationPageExtension.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/app/components/extensions/OrganizationPageExtension.tsx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/server/sonar-web/src/main/js/app/components/extensions/OrganizationPageExtension.tsx b/server/sonar-web/src/main/js/app/components/extensions/OrganizationPageExtension.tsx index d5875a4f851..c38e996c2a3 100644 --- a/server/sonar-web/src/main/js/app/components/extensions/OrganizationPageExtension.tsx +++ b/server/sonar-web/src/main/js/app/components/extensions/OrganizationPageExtension.tsx @@ -80,6 +80,7 @@ const mapStateToProps = (state: any, ownProps: OwnProps) => ({ const mapDispatchToProps = { fetchOrganization }; -export default connect<StateToProps, DispatchProps, OwnProps>(mapStateToProps, mapDispatchToProps)( - OrganizationPageExtension -); +export default connect<StateToProps, DispatchProps, OwnProps>( + mapStateToProps, + mapDispatchToProps +)(OrganizationPageExtension); |