Skip to content

Commit

Permalink
fix: use /processes route for run instance link
Browse files Browse the repository at this point in the history
Closes #4741
  • Loading branch information
barmac authored and nikku committed Dec 6, 2024
1 parent 7068c1f commit 768680a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ function CloudLink(props) {
} = response;

const clusterUrl = getClusterUrl(endpoint);
const url = `${clusterUrl}/instances/${processInstanceKey}`;
const url = `${clusterUrl}/processes/${processInstanceKey}`;

return (
<div className={ css.CloudLink }>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ describe('<StartInstancePlugin> (Zeebe)', function() {
const notificationHTML = shallow(notification.content).html().replace(/&amp;/g, '&');

expect(notificationHTML).to.include(
'https://region.operate.camunda.io/CLUSTER_ID/instances/test'
'https://region.operate.camunda.io/CLUSTER_ID/processes/test'
);
});

Expand Down

0 comments on commit 768680a

Please sign in to comment.