diff --git a/CHANGELOG.md b/CHANGELOG.md index f1f22294af..c7ea8b294f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ All notable changes to the [Camunda Modeler](https://github.com/camunda/camunda- ___Note:__ Yet to be released changes appear here._ +### General + +* `FIX`: use `/processes` route for run instance link ([#4741](https://github.com/camunda/camunda-modeler/issues/4741)) + ## 5.30.0 ### General diff --git a/client/src/plugins/zeebe-plugin/start-instance-plugin/StartInstancePlugin.js b/client/src/plugins/zeebe-plugin/start-instance-plugin/StartInstancePlugin.js index 9b37356770..dd52d94dc1 100644 --- a/client/src/plugins/zeebe-plugin/start-instance-plugin/StartInstancePlugin.js +++ b/client/src/plugins/zeebe-plugin/start-instance-plugin/StartInstancePlugin.js @@ -351,7 +351,7 @@ function CloudLink(props) { } = response; const clusterUrl = getClusterUrl(endpoint); - const url = `${clusterUrl}/instances/${processInstanceKey}`; + const url = `${clusterUrl}/processes/${processInstanceKey}`; return (