mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 14:54:16 +00:00
fixed broken undelegated
type
This commit is contained in:
parent
28bb3f81aa
commit
8acbc579e0
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ pub trait EventDescriptor: Clone {
|
|||
#[allow(non_camel_case_types)]
|
||||
pub struct undelegated<Ev: EventDescriptor>(pub Ev);
|
||||
|
||||
impl<Ev: EventDescriptor> EventDescriptor for Undelegated<Ev> {
|
||||
impl<Ev: EventDescriptor> EventDescriptor for undelegated<Ev> {
|
||||
type EventType = Ev::EventType;
|
||||
|
||||
fn name(&self) -> Cow<'static, str> {
|
||||
|
|
Loading…
Reference in a new issue