diff options
author | Grégoire Aubert <gregoire.aubert@sonarsource.com> | 2017-05-23 14:50:03 +0200 |
---|---|---|
committer | Grégoire Aubert <gregoire.aubert@sonarsource.com> | 2017-06-09 08:26:48 +0200 |
commit | 9de2e9c91932c61a8575f30d7bc7319624a7d91f (patch) | |
tree | 380ac130c9bcd89b5479b326f4b5cb35aad22b13 /server/sonar-web/src/main/js/apps/projects | |
parent | ea37577db04eba371145873d41ac8ad9cae9bb64 (diff) | |
download | sonarqube-9de2e9c91932c61a8575f30d7bc7319624a7d91f.tar.gz sonarqube-9de2e9c91932c61a8575f30d7bc7319624a7d91f.zip |
Move issues type icons to the icons-components folder
Diffstat (limited to 'server/sonar-web/src/main/js/apps/projects')
-rw-r--r-- | server/sonar-web/src/main/js/apps/projects/components/ProjectCardLeakMeasures.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/sonar-web/src/main/js/apps/projects/components/ProjectCardLeakMeasures.js b/server/sonar-web/src/main/js/apps/projects/components/ProjectCardLeakMeasures.js index b42ea3bdd13..e55404cfe42 100644 --- a/server/sonar-web/src/main/js/apps/projects/components/ProjectCardLeakMeasures.js +++ b/server/sonar-web/src/main/js/apps/projects/components/ProjectCardLeakMeasures.js @@ -20,10 +20,10 @@ //@flow import React from 'react'; import Measure from '../../component-measures/components/Measure'; -import BugIcon from '../../../components/ui/BugIcon'; -import CodeSmellIcon from '../../../components/ui/CodeSmellIcon'; +import BugIcon from '../../../components/icons-components/BugIcon'; +import CodeSmellIcon from '../../../components/icons-components/CodeSmellIcon'; import Rating from '../../../components/ui/Rating'; -import VulnerabilityIcon from '../../../components/ui/VulnerabilityIcon'; +import VulnerabilityIcon from '../../../components/icons-components/VulnerabilityIcon'; import { translate } from '../../../helpers/l10n'; type Props = { |