diff --git a/app/src/recipe.rs b/app/src/recipe.rs
index 5d161e5..e7b5610 100644
--- a/app/src/recipe.rs
+++ b/app/src/recipe.rs
@@ -28,9 +28,11 @@ struct RecipeRatingProps {
fn RecipeRating(props: &RecipeRatingProps) -> Html {
let rating = (props.rating + 1).min(3);
html! {
-
- { for (0..rating).map(|_| html!{}) }
-
+
+ { for (0..rating).map(|_| html!{
+
+ }) }
+
}
}
@@ -722,7 +724,7 @@ fn EditRating(props: &EditRatingProps) -> Html {
};
html! {<>
-
+
{"Edit Rating"}
HtmlResult {
Ok(match &*recipe {
Ok(r) => html! {<>
- {&r.name}
-
-
-
-
-
-
-
-
+
{&r.name}
+
+
+
if let Some(e) = &*error {