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/controls/SimpleModal.tsx | |
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/controls/SimpleModal.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/components/controls/SimpleModal.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/components/controls/SimpleModal.tsx b/server/sonar-web/src/main/js/components/controls/SimpleModal.tsx index 98a77bce7f9..26e7a1d67fa 100644 --- a/server/sonar-web/src/main/js/components/controls/SimpleModal.tsx +++ b/server/sonar-web/src/main/js/components/controls/SimpleModal.tsx @@ -18,7 +18,7 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ import * as React from 'react'; -import Modal from '../../components/controls/Modal'; +import Modal from './Modal'; export interface ChildrenProps { onCloseClick: (event?: React.SyntheticEvent<HTMLElement>) => void; |