From 4ca32453e2377702b8633869885e9c8388764312 Mon Sep 17 00:00:00 2001 From: june Date: Wed, 13 Aug 2025 18:29:50 +1200 Subject: [PATCH] Add tags to detail view --- src/components/Detail/InfoView.astro | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/Detail/InfoView.astro b/src/components/Detail/InfoView.astro index 1a0d36f..2516136 100644 --- a/src/components/Detail/InfoView.astro +++ b/src/components/Detail/InfoView.astro @@ -1,4 +1,6 @@ --- +import TagRow from "../Card/TagRow.astro"; + const { re } = Astro.props @@ -23,4 +25,5 @@ const waitTime = formatTime(re.waittime) {workTime && (

{workTime} Work

)} {waitTime && (

{waitTime} Wait

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

{re.rating}

/10

)} - \ No newline at end of file + + \ No newline at end of file