aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--workflow-designer-ui/src/main/frontend/src/features/catalog/CatalogView.jsx2
-rw-r--r--workflow-designer-ui/src/main/frontend/src/features/workflow/overview/overviewSagas.js2
-rw-r--r--workflow-designer-ui/src/main/frontend/src/features/workflow/overview/views/WorkflowHeader.jsx2
3 files changed, 3 insertions, 3 deletions
diff --git a/workflow-designer-ui/src/main/frontend/src/features/catalog/CatalogView.jsx b/workflow-designer-ui/src/main/frontend/src/features/catalog/CatalogView.jsx
index c1cd68ce..edaa64f3 100644
--- a/workflow-designer-ui/src/main/frontend/src/features/catalog/CatalogView.jsx
+++ b/workflow-designer-ui/src/main/frontend/src/features/catalog/CatalogView.jsx
@@ -101,7 +101,7 @@ class CatalogView extends Component {
goToOverviewPage = id => {
const { history } = this.props;
const { location } = history;
- history.push(`${location.pathname}/workflow/${id}/overview`);
+ history.push(`${location.pathname}workflow/${id}/overview`);
};
searchChange = searchValue => {
diff --git a/workflow-designer-ui/src/main/frontend/src/features/workflow/overview/overviewSagas.js b/workflow-designer-ui/src/main/frontend/src/features/workflow/overview/overviewSagas.js
index 41002c89..792d4c0c 100644
--- a/workflow-designer-ui/src/main/frontend/src/features/workflow/overview/overviewSagas.js
+++ b/workflow-designer-ui/src/main/frontend/src/features/workflow/overview/overviewSagas.js
@@ -93,7 +93,7 @@ export function* archiveWorkflow(action) {
})
})
);
- history.push('/workflows');
+ history.push('/workflows/');
}
export function* watchOverview() {
diff --git a/workflow-designer-ui/src/main/frontend/src/features/workflow/overview/views/WorkflowHeader.jsx b/workflow-designer-ui/src/main/frontend/src/features/workflow/overview/views/WorkflowHeader.jsx
index e40b19a2..ce281299 100644
--- a/workflow-designer-ui/src/main/frontend/src/features/workflow/overview/views/WorkflowHeader.jsx
+++ b/workflow-designer-ui/src/main/frontend/src/features/workflow/overview/views/WorkflowHeader.jsx
@@ -23,7 +23,7 @@ import ArchiveLabel from 'shared/archiveLabel/ArchiveLabel';
const Buttons = ({ history, archiveWorkflow, restoreWorkflow, isArchive }) => (
<div className="header-buttons">
<SVGIcon
- onClick={() => history.push('/workflows')}
+ onClick={() => history.push('/workflows/')}
label={I18n.t('workflow.overview.backBtnLabel')}
className="go-catalog-btn"
labelPosition="right"