diff --git a/src/components/items_list.rs b/src/components/items_list.rs index 3f9f2f6..df1cb6b 100644 --- a/src/components/items_list.rs +++ b/src/components/items_list.rs @@ -21,6 +21,9 @@ pub fn ItemsList( items: ReadSignal>, set_items: WriteSignal>, ) -> impl IntoView { + // State to track the currently focused cell + let (focused_cell, set_focused_cell) = create_signal(None::); + // State to manage dynamic property names let (custom_properties, set_custom_properties) = create_signal(Vec::::new()); @@ -159,8 +162,10 @@ pub fn ItemsList( "Name" => view! {
    {move || { @@ -199,15 +204,17 @@ pub fn ItemsList( "Description" => view! { }.into_view(), "Tags" => view! { }.into_view(), "Actions" => view! { @@ -240,7 +247,9 @@ pub fn ItemsList( }