aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/quality-profiles/changelog
diff options
context:
space:
mode:
authorGrégoire Aubert <gregoire.aubert@sonarsource.com>2017-04-04 17:14:00 +0200
committerStas Vilchik <stas-vilchik@users.noreply.github.com>2017-04-13 12:21:37 +0200
commitd665528c8751ead9ca93e3d18dd8600fac92834b (patch)
treec0b20b3df0dc4b199a0c59b08354555f33268d3e /server/sonar-web/src/main/js/apps/quality-profiles/changelog
parent1ff5bd2cb76894f7c184c9df9ff729112ba5a246 (diff)
downloadsonarqube-d665528c8751ead9ca93e3d18dd8600fac92834b.tar.gz
sonarqube-d665528c8751ead9ca93e3d18dd8600fac92834b.zip
SONAR-9063 Rework issue box
Diffstat (limited to 'server/sonar-web/src/main/js/apps/quality-profiles/changelog')
-rw-r--r--server/sonar-web/src/main/js/apps/quality-profiles/changelog/SeverityChange.js2
-rw-r--r--server/sonar-web/src/main/js/apps/quality-profiles/changelog/__tests__/SeverityChange-test.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/apps/quality-profiles/changelog/SeverityChange.js b/server/sonar-web/src/main/js/apps/quality-profiles/changelog/SeverityChange.js
index 5497d9ad0fb..d6f03008f15 100644
--- a/server/sonar-web/src/main/js/apps/quality-profiles/changelog/SeverityChange.js
+++ b/server/sonar-web/src/main/js/apps/quality-profiles/changelog/SeverityChange.js
@@ -19,7 +19,7 @@
*/
// @flow
import React from 'react';
-import SeverityHelper from '../../../components/shared/severity-helper';
+import SeverityHelper from '../../../components/shared/SeverityHelper';
import { translate } from '../../../helpers/l10n';
type Props = {
diff --git a/server/sonar-web/src/main/js/apps/quality-profiles/changelog/__tests__/SeverityChange-test.js b/server/sonar-web/src/main/js/apps/quality-profiles/changelog/__tests__/SeverityChange-test.js
index d6f5e10e353..8597dd0ab8c 100644
--- a/server/sonar-web/src/main/js/apps/quality-profiles/changelog/__tests__/SeverityChange-test.js
+++ b/server/sonar-web/src/main/js/apps/quality-profiles/changelog/__tests__/SeverityChange-test.js
@@ -20,7 +20,7 @@
import { shallow } from 'enzyme';
import React from 'react';
import SeverityChange from '../SeverityChange';
-import SeverityHelper from '../../../../components/shared/severity-helper';
+import SeverityHelper from '../../../../components/shared/SeverityHelper';
it('should render SeverityHelper', () => {
const output = shallow(<SeverityChange severity="BLOCKER" />).find(SeverityHelper);