aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/overview/meta/MetaContainer.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main/js/apps/overview/meta/MetaContainer.tsx')
-rw-r--r--server/sonar-web/src/main/js/apps/overview/meta/MetaContainer.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/overview/meta/MetaContainer.tsx b/server/sonar-web/src/main/js/apps/overview/meta/MetaContainer.tsx
index c35ad5bec9a..90f2a829649 100644
--- a/server/sonar-web/src/main/js/apps/overview/meta/MetaContainer.tsx
+++ b/server/sonar-web/src/main/js/apps/overview/meta/MetaContainer.tsx
@@ -31,6 +31,7 @@ import {
getOrganizationByKey,
Store
} from '../../../store/rootReducer';
+import { BranchLike } from '../../../types/branch-like';
import AnalysesList from '../events/AnalysesList';
import MetaKey from './MetaKey';
import MetaLinks from './MetaLinks';
@@ -54,7 +55,7 @@ interface StateToProps {
}
interface OwnProps {
- branchLike?: T.BranchLike;
+ branchLike?: BranchLike;
component: T.Component;
history?: {
[metric: string]: Array<{ date: Date; value?: string }>;