Skip to content

Commit

Permalink
chore: merge branch 'main' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
barmac committed Dec 6, 2024
2 parents 719d553 + 768680a commit 0aa28a1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ ___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))
* `DEPS`: update to `@camunda/[email protected]`

### Forms
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 0aa28a1

Please sign in to comment.