diff options
author | jelemux <jeremias.weber@protonmail.com> | 2021-02-26 16:48:07 +0100 |
---|---|---|
committer | jelemux <jeremias.weber@protonmail.com> | 2021-02-26 16:48:07 +0100 |
commit | ce41ea82d7704e435feb8169c5bf8189b92f871b (patch) | |
tree | 0daa1b1eea07ffb8b37c7614fbb5d6662ecb2726 /src | |
parent | b7875dc4072abeec26f93b3d322d00cecff23cfb (diff) | |
download | wasm-card-ce41ea82d7704e435feb8169c5bf8189b92f871b.tar.gz wasm-card-ce41ea82d7704e435feb8169c5bf8189b92f871b.tar.bz2 |
format with cargo fmt
Diffstat (limited to 'src')
-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) } |