Skip to content

Commit

Permalink
Merge pull request #5 from nanianlisao/fix_build_edges
Browse files Browse the repository at this point in the history
fix: blank data on get_edges
  • Loading branch information
ityuany authored Dec 9, 2024
2 parents dc2ca29 + fc9a3d5 commit e32ef58
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions crates/module_graph/src/graph.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ const END_ID: &str = "__END__";

impl<'a> Graph<'a> {
pub fn get_edges(&mut self) -> Graphics {
self.build_edges();
Graphics {
dictionaries: self.get_dictionaries(),
graph: self.edges.lock().unwrap().clone(),
Expand Down

0 comments on commit e32ef58

Please sign in to comment.