From 33be8c3500e678c3d56202a8f204aabe1f1e84bd Mon Sep 17 00:00:00 2001 From: Stas Vilchik Date: Fri, 4 Nov 2016 09:59:58 +0100 Subject: extend the main js app (#1345) --- .../main/js/apps/quality-profiles/changelog/ChangelogContainer.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'server/sonar-web/src/main/js/apps/quality-profiles/changelog') 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 () { -- cgit v1.2.3