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 @@ -59,6 +59,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
- Deprecate and hide by default "Edit" and "Delete" action buttons in `StandardEntity` expanded state (can be re-enabled by setting `showActions` prop to `true`).

#### 🐛 Fixed
- Fix `RdfDataProvider.links()` returning empty results when called with `linkTypeIds` parameter.
- 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.
Expand Down
2 changes: 1 addition & 1 deletion src/data/rdf/rdfDataProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ export class RdfDataProvider implements DataProvider {
primarySet.has(t.subject) && secondarySet.has(t.object) ||
secondarySet.has(t.subject) && primarySet.has(t.object)
) &&
(!linkTypeSet || !linkTypeSet.has(t.predicate.value))
(!linkTypeSet || linkTypeSet.has(t.predicate.value))
) {
const properties = findProperties(this.dataset, t);
links.push({
Expand Down