diff options
Diffstat (limited to 'src/view')
-rw-r--r-- | src/view/main.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/view/main.rs b/src/view/main.rs index 9ce032a..93d2492 100644 --- a/src/view/main.rs +++ b/src/view/main.rs @@ -175,7 +175,8 @@ impl Component for MainView { } for other_identifications_link in self.other_identifications_links.iter() { - let other_identifications_link = other_identifications_link.borrow().clone().unwrap(); + let other_identifications_link = + other_identifications_link.borrow().clone().unwrap(); other_identifications_link.send_message(OtherIdentificationMsg::Generate) } |