This repository has been archived by the owner on Nov 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(StepsService): Generate steady IDs for steps and branches
At the moment, when a step is no longer available because it was removed, or its id changed, we close the step's detail panel since is no longer editing the right step. This causes an issue with vscode since there's a circular dependency between the integration JSON and the code editor. Long story short, whenever there's an update of the integration JSON, the steps or branch IDs change, forcing a new sync cycle from the kogito integration side. A partial fix to this issue is to ensure that the IDs are consistent between syncs, so this way the comparison inside of the KogitoEditorIntegrationProvider.tsx works. fix: #1553
- Loading branch information
Showing
4 changed files
with
795 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
export * from './debezium-mongodb.step'; | ||
export * from './integration-steps'; | ||
export * from './steps'; |
Oops, something went wrong.