diff options
author | Grégoire Aubert <gregoire.aubert@sonarsource.com> | 2017-04-04 17:14:00 +0200 |
---|---|---|
committer | Stas Vilchik <stas-vilchik@users.noreply.github.com> | 2017-04-13 12:21:37 +0200 |
commit | d665528c8751ead9ca93e3d18dd8600fac92834b (patch) | |
tree | c0b20b3df0dc4b199a0c59b08354555f33268d3e /server/sonar-web/src/main/js/apps/quality-profiles/compare | |
parent | 1ff5bd2cb76894f7c184c9df9ff729112ba5a246 (diff) | |
download | sonarqube-d665528c8751ead9ca93e3d18dd8600fac92834b.tar.gz sonarqube-d665528c8751ead9ca93e3d18dd8600fac92834b.zip |
SONAR-9063 Rework issue box
Diffstat (limited to 'server/sonar-web/src/main/js/apps/quality-profiles/compare')
-rw-r--r-- | server/sonar-web/src/main/js/apps/quality-profiles/compare/ComparisonResults.js | 2 | ||||
-rw-r--r-- | server/sonar-web/src/main/js/apps/quality-profiles/compare/__tests__/ComparisonResults-test.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/apps/quality-profiles/compare/ComparisonResults.js b/server/sonar-web/src/main/js/apps/quality-profiles/compare/ComparisonResults.js index ad79758344a..0e5e292b694 100644 --- a/server/sonar-web/src/main/js/apps/quality-profiles/compare/ComparisonResults.js +++ b/server/sonar-web/src/main/js/apps/quality-profiles/compare/ComparisonResults.js @@ -21,7 +21,7 @@ import React from 'react'; import { Link } from 'react-router'; import ComparisonEmpty from './ComparisonEmpty'; -import SeverityIcon from '../../../components/shared/severity-icon'; +import SeverityIcon from '../../../components/shared/SeverityIcon'; import { translateWithParameters } from '../../../helpers/l10n'; import { getRulesUrl } from '../../../helpers/urls'; diff --git a/server/sonar-web/src/main/js/apps/quality-profiles/compare/__tests__/ComparisonResults-test.js b/server/sonar-web/src/main/js/apps/quality-profiles/compare/__tests__/ComparisonResults-test.js index 41b3b90bb12..d346aa2f480 100644 --- a/server/sonar-web/src/main/js/apps/quality-profiles/compare/__tests__/ComparisonResults-test.js +++ b/server/sonar-web/src/main/js/apps/quality-profiles/compare/__tests__/ComparisonResults-test.js @@ -22,7 +22,7 @@ import React from 'react'; import { Link } from 'react-router'; import ComparisonResults from '../ComparisonResults'; import ComparisonEmpty from '../ComparisonEmpty'; -import SeverityIcon from '../../../../components/shared/severity-icon'; +import SeverityIcon from '../../../../components/shared/SeverityIcon'; it('should render ComparisonEmpty', () => { const output = shallow( |