Skip to content

Commit

Permalink
fix: filter out downstream references (#5259)
Browse files Browse the repository at this point in the history
  • Loading branch information
mindspank authored Jul 12, 2024
1 parent 04612a3 commit 88f0168
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
(referencedThings) => referencedThings,
);
$: references = $referencedWithMetadata;
$: references = $referencedWithMetadata.filter((ref) => ref.reference);
function blur() {
eventBus.emit("highlightSelection", []);
Expand Down

1 comment on commit 88f0168

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.