Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p

#### 🐛 Fixed
- Fix `HaloLink` and visual authoring link path highlight being rendered on top on elements by placing it onto `overLinkGeometry` widget layer instead.
- Fix `HaloLink` link path highlighting not updating on link re-route.
- Fix element template state not being restored when ungrouping entities.
- Fix missing element decorations after re-importing the same diagram.
- Fix `DraggableHandle` to avoid using stale `onDragHandle` and `onEndDragHandle` prop values.
Expand Down
5 changes: 5 additions & 0 deletions src/widgets/haloLink.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,11 @@ class HaloLinkInner extends React.Component<HaloLinkInnerProps, State> {
this.updateActionContext();
}
});
this.targetListener.listen(canvas.renderingState.events, 'changeRoutings', e => {
if (e.previous.get(link.id) !== e.source.getRouting(link.id)) {
this.updateActionContext();
}
});
}
}

Expand Down