fix(cli): 🚑 wrong import in children and components macros
This commit is contained in:
parent
e7a6d91c1f
commit
936e1f19c8
@ -16,7 +16,7 @@ macro_rules! components {
|
|||||||
$(
|
$(
|
||||||
temp_vec.push(
|
temp_vec.push(
|
||||||
Box::new($x)
|
Box::new($x)
|
||||||
as Box<dyn tui::framework::component::Component $( $t + )* >
|
as Box<dyn lool::cli::tui::framework::component::Component $( $t + )* >
|
||||||
);
|
);
|
||||||
)*
|
)*
|
||||||
temp_vec
|
temp_vec
|
||||||
@ -32,7 +32,7 @@ macro_rules! children {
|
|||||||
$(
|
$(
|
||||||
map.insert(
|
map.insert(
|
||||||
$name.to_string(),
|
$name.to_string(),
|
||||||
Box::new($value) as Box<dyn tui::framework::component::Component>
|
Box::new($value) as Box<dyn lool::cli::tui::framework::component::Component>
|
||||||
);
|
);
|
||||||
)*
|
)*
|
||||||
map
|
map
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user