diff options
author | Wouter Admiraal <wouter.admiraal@sonarsource.com> | 2020-05-28 15:34:46 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2020-06-02 20:05:09 +0000 |
commit | cba808dd9122029150b7d966f4bb8faac53f2ef7 (patch) | |
tree | 953b6e61ed6800331c91626951240f2fc99bc7cb /server/sonar-web/src/main/js/apps/overview/branches/BranchOverview.tsx | |
parent | d81f32001f8a50acb51f0d9851a192269b870740 (diff) | |
download | sonarqube-cba808dd9122029150b7d966f4bb8faac53f2ef7.tar.gz sonarqube-cba808dd9122029150b7d966f4bb8faac53f2ef7.zip |
SONAR-13419 Show complete 1 year history on overview activity panel
Diffstat (limited to 'server/sonar-web/src/main/js/apps/overview/branches/BranchOverview.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/apps/overview/branches/BranchOverview.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/apps/overview/branches/BranchOverview.tsx b/server/sonar-web/src/main/js/apps/overview/branches/BranchOverview.tsx index e242265c359..6268623fb94 100644 --- a/server/sonar-web/src/main/js/apps/overview/branches/BranchOverview.tsx +++ b/server/sonar-web/src/main/js/apps/overview/branches/BranchOverview.tsx @@ -25,7 +25,7 @@ import { getApplicationDetails, getApplicationLeak } from '../../../api/applicat import { getMeasuresWithPeriodAndMetrics } from '../../../api/measures'; import { getProjectActivity } from '../../../api/projectActivity'; import { getApplicationQualityGate, getQualityGateProjectStatus } from '../../../api/quality-gates'; -import { getTimeMachineData } from '../../../api/time-machine'; +import { getAllTimeMachineData } from '../../../api/time-machine'; import { getActivityGraph, getHistoryMetrics, @@ -298,7 +298,7 @@ export default class BranchOverview extends React.PureComponent<Props, State> { const graphMetrics = getHistoryMetrics(graph, []); const metrics = uniq([...HISTORY_METRICS_LIST, ...graphMetrics]); - return getTimeMachineData({ + return getAllTimeMachineData({ ...getBranchLikeQuery(branchLike), from: FROM_DATE, component: component.key, |