diff options
Diffstat (limited to 'src/view')
-rw-r--r-- | src/view/main.rs | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/view/main.rs b/src/view/main.rs index 808b160..df8f326 100644 --- a/src/view/main.rs +++ b/src/view/main.rs @@ -1,8 +1,8 @@ -use crate::model::address::*; -use crate::model::name::*; -use crate::model::organizational::*; -use crate::model::other_identification::*; -use crate::model::telephone::*; +use crate::model::property_groups::address::*; +use crate::model::property_groups::name::*; +use crate::model::property_groups::organizational::*; +use crate::model::property_groups::other_identification::*; +use crate::model::property_groups::telephone::*; use crate::model::utility::*; use crate::model::vcard::VCardData; use crate::model::Error; @@ -103,7 +103,8 @@ impl Component for MainView { shouldrender = true; } Msg::AddDates => { - self.other_identifications_links.push(WeakComponentLink::default()); + self.other_identifications_links + .push(WeakComponentLink::default()); shouldrender = true; } Msg::AddOrganizational => { |