diff --git a/examples/todo_app_sqlite/src/todo.rs b/examples/todo_app_sqlite/src/todo.rs index 7dc728a20..ee2f46a0f 100644 --- a/examples/todo_app_sqlite/src/todo.rs +++ b/examples/todo_app_sqlite/src/todo.rs @@ -156,11 +156,11 @@ pub fn Todos(cx: Scope) -> impl IntoView { todos.read(cx) .map(move |todos| match todos { Err(e) => { - vec![view! { cx,
"Server Error: " {e.to_string()}}.into_any()] + view! { cx,
"Server Error: " {e.to_string()}}.into_view(cx) } Ok(todos) => { if todos.is_empty() { - vec![view! { cx,
"No tasks were found."
}.into_any()] + view! { cx,"No tasks were found."
}.into_view(cx) } else { todos .into_iter() @@ -175,9 +175,9 @@ pub fn Todos(cx: Scope) -> impl IntoView { } - .into_any() }) .collect::"Server Error: " {e.to_string()}}.into_any()] + view! { cx,
"Server Error: " {e.to_string()}}.into_view(cx) } Ok(todos) => { if todos.is_empty() { - vec![view! { cx,
"No tasks were found."
}.into_any()] + view! { cx,"No tasks were found."
}.into_view(cx) } else { todos .into_iter() @@ -228,9 +228,9 @@ pub fn Todos(cx: Scope) -> impl IntoView { } - .into_any() }) .collect::"Server Error: " {e.to_string()}}.into_any()] + view! { cx,
"Server Error: " {e.to_string()}}.into_view(cx) } Ok(todos) => { if todos.is_empty() { - vec![view! { cx,
"No tasks were found."
}.into_any()] + view! { cx,"No tasks were found."
}.into_view(cx) } else { todos .into_iter() @@ -182,9 +182,9 @@ pub fn Todos(cx: Scope) -> impl IntoView { } - .into_any() }) .collect::