diff options
author | Grégoire Aubert <gregoire.aubert@sonarsource.com> | 2018-07-11 17:39:00 +0200 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2018-07-18 20:21:20 +0200 |
commit | 9f51ad12a3c2ed26245697df151b3996e5b7e7f2 (patch) | |
tree | 9e79b2a6f1a49d84898e044c9169893dd6351f9a /server/sonar-web/src/main/js/components/docs | |
parent | b9d81f194b90eb01a9718b6b9849f9bee3dd79d6 (diff) | |
download | sonarqube-9f51ad12a3c2ed26245697df151b3996e5b7e7f2.tar.gz sonarqube-9f51ad12a3c2ed26245697df151b3996e5b7e7f2.zip |
Simplify import paths of some components
Diffstat (limited to 'server/sonar-web/src/main/js/components/docs')
-rw-r--r-- | server/sonar-web/src/main/js/components/docs/DocLink.tsx | 2 | ||||
-rw-r--r-- | server/sonar-web/src/main/js/components/docs/DocTooltipLink.tsx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/components/docs/DocLink.tsx b/server/sonar-web/src/main/js/components/docs/DocLink.tsx index e4feddec312..33c6125f89e 100644 --- a/server/sonar-web/src/main/js/components/docs/DocLink.tsx +++ b/server/sonar-web/src/main/js/components/docs/DocLink.tsx @@ -19,7 +19,7 @@ */ import * as React from 'react'; import { Link } from 'react-router'; -import DetachIcon from '../../components/icons-components/DetachIcon'; +import DetachIcon from '../icons-components/DetachIcon'; const SONARCLOUD_LINK = '/#sonarcloud#/'; diff --git a/server/sonar-web/src/main/js/components/docs/DocTooltipLink.tsx b/server/sonar-web/src/main/js/components/docs/DocTooltipLink.tsx index 7160ab51370..212ef160e87 100644 --- a/server/sonar-web/src/main/js/components/docs/DocTooltipLink.tsx +++ b/server/sonar-web/src/main/js/components/docs/DocTooltipLink.tsx @@ -20,7 +20,7 @@ import * as React from 'react'; import { Link } from 'react-router'; import { forEach } from 'lodash'; -import DetachIcon from '../../components/icons-components/DetachIcon'; +import DetachIcon from '../icons-components/DetachIcon'; interface OwnProps { customProps?: { [k: string]: string }; |