From 8a5fec1712aabace181d4a467f0b21ffeb7f72ed Mon Sep 17 00:00:00 2001 From: june Date: Wed, 13 Aug 2025 18:23:50 +1200 Subject: [PATCH] Fix some capitalisation issues, change rating display --- src/pages/recipe/[recipeid].astro | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/pages/recipe/[recipeid].astro b/src/pages/recipe/[recipeid].astro index 7e3df49..1dedf6d 100644 --- a/src/pages/recipe/[recipeid].astro +++ b/src/pages/recipe/[recipeid].astro @@ -41,24 +41,24 @@ const waitTime = formatTime(re.waittime)
-
+

{re.name}

{re.description}

-
+
{re.servings !== 0 && (

Serves: {re.servings}

)} - {workTime && (

{workTime} work

)} - {waitTime && (

{waitTime} wait

)} - {re.rating !== 0 && (

{re.rating}⭐️

)} + {workTime && (

{workTime} Work

)} + {waitTime && (

{waitTime} Wait

)} + {re.rating !== 0 && (

{re.rating}

/10

)}

Ingredients

-
+