Skip to content

Commit ef1f72c

Browse files
committed
[Filters] repair edge filter fixes #189
1 parent 7b378f1 commit ef1f72c

File tree

1 file changed

+1
-1
lines changed
  • packages/gephi-lite/src/core/filters

1 file changed

+1
-1
lines changed

packages/gephi-lite/src/core/filters/utils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ export function filterGraph<G extends DatalessGraph | SigmaGraph>(
9696
const value = filter.field.dynamic
9797
? computeAllDynamicAttributes("edges", graph)[edgeID][filter.field.field]
9898
: edgeData[edgeID][filter.field.field];
99-
filterValue(value, filter);
99+
return filterValue(value, filter);
100100
});
101101
}
102102
const res = graph.emptyCopy() as G;

0 commit comments

Comments
 (0)