diff options
Diffstat (limited to 'server/sonar-web/src/main/js/components/hoc/withIndexationContext.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/components/hoc/withIndexationContext.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/components/hoc/withIndexationContext.tsx b/server/sonar-web/src/main/js/components/hoc/withIndexationContext.tsx index 6ea0f892882..c071c554616 100644 --- a/server/sonar-web/src/main/js/components/hoc/withIndexationContext.tsx +++ b/server/sonar-web/src/main/js/components/hoc/withIndexationContext.tsx @@ -37,7 +37,7 @@ export default function withIndexationContext<P>( render() { return ( <IndexationContext.Consumer> - {indexationContext => { + {(indexationContext) => { if (indexationContext) { return ( <WrappedComponent indexationContext={indexationContext} {...(this.props as P)} /> |