diff options
Diffstat (limited to 'server/sonar-web/src/main/js/apps/projectActivity/components/GraphsZoom.js')
-rw-r--r-- | server/sonar-web/src/main/js/apps/projectActivity/components/GraphsZoom.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/projectActivity/components/GraphsZoom.js b/server/sonar-web/src/main/js/apps/projectActivity/components/GraphsZoom.js index 1cf79296c10..5f646a05273 100644 --- a/server/sonar-web/src/main/js/apps/projectActivity/components/GraphsZoom.js +++ b/server/sonar-web/src/main/js/apps/projectActivity/components/GraphsZoom.js @@ -51,7 +51,6 @@ export default function GraphsZoom(props /*: Props */) { <ZoomTimeLine endDate={props.graphEndDate} height={64} - width={width} interpolate="linear" leakPeriodDate={props.leakPeriodDate} metricType={props.metricsType} @@ -60,6 +59,7 @@ export default function GraphsZoom(props /*: Props */) { showAreas={props.showAreas} startDate={props.graphStartDate} updateZoom={props.updateGraphZoom} + width={width} /> )} </AutoSizer> |