diff options
author | Pascal Mugnier <pascal.mugnier@sonarsource.com> | 2018-04-26 08:42:19 +0200 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2018-05-03 20:20:50 +0200 |
commit | b083d4376580b8dd252933025ca86ce5b98ce7af (patch) | |
tree | a0d05a812d6c70c3d8573106b12a1ec74f6faefa /server/sonar-web/src/main/js/components/docs/DocTooltip.tsx | |
parent | 0c996218c1a2c2542c3465a7bf1f38ee386132da (diff) | |
download | sonarqube-b083d4376580b8dd252933025ca86ce5b98ce7af.tar.gz sonarqube-b083d4376580b8dd252933025ca86ce5b98ce7af.zip |
SONAR-10612 Create documentation space in the web app
Diffstat (limited to 'server/sonar-web/src/main/js/components/docs/DocTooltip.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/components/docs/DocTooltip.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/components/docs/DocTooltip.tsx b/server/sonar-web/src/main/js/components/docs/DocTooltip.tsx index 0dc27dd9954..5c719443490 100644 --- a/server/sonar-web/src/main/js/components/docs/DocTooltip.tsx +++ b/server/sonar-web/src/main/js/components/docs/DocTooltip.tsx @@ -59,7 +59,7 @@ export default class DocTooltip extends React.PureComponent<Props, State> { fetchContent = () => { this.setState({ loading: true }); - import(`Docs/${this.props.doc}.md`).then( + import(`Docs/tooltips/${this.props.doc}.md`).then( ({ default: content }) => { if (this.mounted) { this.setState({ content, loading: false }); |