diff options
author | jelemux <jeremias.weber@protonmail.com> | 2021-02-17 19:43:30 +0100 |
---|---|---|
committer | jelemux <jeremias.weber@protonmail.com> | 2021-02-17 19:43:30 +0100 |
commit | d0d42c5ae00560e4464479a98df90ed063a1c773 (patch) | |
tree | 09ffff29b239768422bd3a9e147b75a3b3866a13 /src/view/property_group.rs | |
parent | cb310a66e94db4e0c4f7d0373a670156b012412a (diff) | |
download | wasm-card-d0d42c5ae00560e4464479a98df90ed063a1c773.tar.gz wasm-card-d0d42c5ae00560e4464479a98df90ed063a1c773.tar.bz2 |
change dates to other_identification and add some stuff
Diffstat (limited to 'src/view/property_group.rs')
-rw-r--r-- | src/view/property_group.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/view/property_group.rs b/src/view/property_group.rs index 9c86e80..f4b62a4 100644 --- a/src/view/property_group.rs +++ b/src/view/property_group.rs @@ -5,7 +5,7 @@ use yewtil::NeqAssign; #[derive(Clone, PartialEq, Properties)] pub struct InputProps< - O: 'static + VCardPropertyInputObject<M> + Clone, + O: 'static + VCardPropertyInputGroupObject<M> + Clone, M: 'static + PartialEq + Clone, > { pub generated: Callback<O>, @@ -14,7 +14,7 @@ pub struct InputProps< #[derive(Clone, PartialEq)] pub struct PropertyGroupInputComponent< - O: 'static + VCardPropertyInputObject<M>, + O: 'static + VCardPropertyInputGroupObject<M>, M: 'static + PartialEq + Clone, > { pub props: InputProps<O, M>, @@ -22,7 +22,7 @@ pub struct PropertyGroupInputComponent< pub error: Option<Error>, } -impl<O: 'static + VCardPropertyInputObject<M>, M: 'static + PartialEq + Clone> Component +impl<O: 'static + VCardPropertyInputGroupObject<M>, M: 'static + PartialEq + Clone> Component for PropertyGroupInputComponent<O, M> { type Message = M; @@ -57,7 +57,7 @@ impl<O: 'static + VCardPropertyInputObject<M>, M: 'static + PartialEq + Clone> C } } -impl<O: VCardPropertyInputObject<M>, M: 'static + PartialEq + Clone> +impl<O: VCardPropertyInputGroupObject<M>, M: 'static + PartialEq + Clone> PropertyGroupInputComponent<O, M> { /// Returns the error as `Html` |