aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/quality-profiles/changelog
diff options
context:
space:
mode:
authorStas Vilchik <vilchiks@gmail.com>2016-11-04 09:59:58 +0100
committerGitHub <noreply@github.com>2016-11-04 09:59:58 +0100
commit33be8c3500e678c3d56202a8f204aabe1f1e84bd (patch)
treebc24b8f5737f5c36149b26704947b89f0b26d6fe /server/sonar-web/src/main/js/apps/quality-profiles/changelog
parentf3ce7bd1eddb781fbd6571c549a99c1d447ab913 (diff)
downloadsonarqube-33be8c3500e678c3d56202a8f204aabe1f1e84bd.tar.gz
sonarqube-33be8c3500e678c3d56202a8f204aabe1f1e84bd.zip
extend the main js app (#1345)
Diffstat (limited to 'server/sonar-web/src/main/js/apps/quality-profiles/changelog')
-rw-r--r--server/sonar-web/src/main/js/apps/quality-profiles/changelog/ChangelogContainer.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/server/sonar-web/src/main/js/apps/quality-profiles/changelog/ChangelogContainer.js b/server/sonar-web/src/main/js/apps/quality-profiles/changelog/ChangelogContainer.js
index 2c0bdd1c882..59adf9809dd 100644
--- a/server/sonar-web/src/main/js/apps/quality-profiles/changelog/ChangelogContainer.js
+++ b/server/sonar-web/src/main/js/apps/quality-profiles/changelog/ChangelogContainer.js
@@ -114,17 +114,17 @@ export default class ChangelogContainer extends React.Component {
handleFromDateChange (fromDate) {
const query = { ...this.props.location.query, since: fromDate };
- this.context.router.push({ pathname: '/changelog', query });
+ this.context.router.push({ pathname: '/profiles/changelog', query });
}
handleToDateChange (toDate) {
const query = { ...this.props.location.query, to: toDate };
- this.context.router.push({ pathname: '/changelog', query });
+ this.context.router.push({ pathname: '/profiles/changelog', query });
}
handleReset () {
const query = { key: this.props.profile.key };
- this.context.router.push({ pathname: '/changelog', query });
+ this.context.router.push({ pathname: '/profiles/changelog', query });
}
render () {