aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/overview/events
diff options
context:
space:
mode:
authorGrégoire Aubert <gregoire.aubert@sonarsource.com>2017-07-07 17:12:00 +0200
committerGrégoire Aubert <gregoire.aubert@sonarsource.com>2017-07-13 14:34:17 +0200
commitb5e582ccc44788e5d57dde7df2ed0b0050f82c1a (patch)
tree8dae37a74e5f9e9569d282b93a212a4e298499e6 /server/sonar-web/src/main/js/apps/overview/events
parent598a5a81e4842fa03705f7f1c26a79bc520c70ef (diff)
downloadsonarqube-b5e582ccc44788e5d57dde7df2ed0b0050f82c1a.tar.gz
sonarqube-b5e582ccc44788e5d57dde7df2ed0b0050f82c1a.zip
Apply several feedbacks
* Fix dates serializing * Prevent clicks on event button to activate the graph tooltip * Throttle part of the zoom graph * Reload history when an analysis is deleted * Fix multiple style flaws
Diffstat (limited to 'server/sonar-web/src/main/js/apps/overview/events')
-rw-r--r--server/sonar-web/src/main/js/apps/overview/events/AnalysesList.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/apps/overview/events/AnalysesList.js b/server/sonar-web/src/main/js/apps/overview/events/AnalysesList.js
index 9746ea02c4a..05856e6601e 100644
--- a/server/sonar-web/src/main/js/apps/overview/events/AnalysesList.js
+++ b/server/sonar-web/src/main/js/apps/overview/events/AnalysesList.js
@@ -22,7 +22,6 @@ import React from 'react';
import { Link } from 'react-router';
import Analysis from './Analysis';
import PreviewGraph from './PreviewGraph';
-import throwGlobalError from '../../../app/utils/throwGlobalError';
import { getMetrics } from '../../../api/metrics';
import { getProjectActivity } from '../../../api/projectActivity';
import { translate } from '../../../helpers/l10n';
@@ -72,7 +71,7 @@ export default class AnalysesList extends React.PureComponent {
if (this.mounted) {
this.setState({ analyses: response[0].analyses, metrics: response[1], loading: false });
}
- }, throwGlobalError);
+ });
}
renderList(analyses: Array<AnalysisType>) {