From 5261e276f156ad63e8bd8cf4d8ac2e3dc64ccdca Mon Sep 17 00:00:00 2001 From: Nazire Date: Sat, 14 Dec 2024 23:10:26 +0300 Subject: [PATCH] added link to tag page --- frontend/src/routes/question.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/frontend/src/routes/question.tsx b/frontend/src/routes/question.tsx index 9a0f4d3..1d29fb9 100644 --- a/frontend/src/routes/question.tsx +++ b/frontend/src/routes/question.tsx @@ -301,10 +301,11 @@ export default function QuestionPage() { ) : (
{question.tags.map((s) => ( - + {s.name} - ))} + ))// Link to tag page + }
)}