-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: update config panel when deleting a connection (#13437)
- Loading branch information
Showing
4 changed files
with
62 additions
and
29 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
16 changes: 16 additions & 0 deletions
16
frontend/packages/process-editor/src/types/SelectionChangeEvent.ts
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { type BpmnBusinessObjectEditor } from './BpmnBusinessObjectEditor'; | ||
|
||
export type SelectionChangedEvent = { | ||
newSelection: Array<{ | ||
element: { | ||
id: string; | ||
businessObject: BpmnBusinessObjectEditor; | ||
}; | ||
}>; | ||
oldSelection: Array<{ | ||
element: { | ||
id: string; | ||
businessObject: BpmnBusinessObjectEditor; | ||
}; | ||
}>; | ||
}; |
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