From a52de108bb61a8ada38b51e52af5ca1c0ddb6840 Mon Sep 17 00:00:00 2001
From: alikia2x
Date: Mon, 1 Dec 2025 03:22:55 +0800
Subject: [PATCH] update: showing tags on labelling page
---
packages/temp_frontend/app/routes/labelling.tsx | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/packages/temp_frontend/app/routes/labelling.tsx b/packages/temp_frontend/app/routes/labelling.tsx
index 2f4b00e..926e6d4 100644
--- a/packages/temp_frontend/app/routes/labelling.tsx
+++ b/packages/temp_frontend/app/routes/labelling.tsx
@@ -1,8 +1,6 @@
import { Layout } from "@/components/Layout";
import { useCallback, useEffect, useState } from "react";
-import { Input } from "@/components/ui/input";
import { Button } from "@/components/ui/button";
-import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
import { Label } from "@/components/ui/label";
import { formatDateTime } from "@/components/SearchResults";
import { treaty } from "@elysiajs/eden";
@@ -201,9 +199,7 @@ export default function Home() {
{currentVideo.bvid} · av{currentVideo.aid}
- 发布于 {formatDateTime(new Date(currentVideo.published_at!))}
-
-
+ 发布于 {formatDateTime(new Date(currentVideo.published_at!))}
播放:{(currentVideo.views ?? 0).toLocaleString()}
@@ -217,6 +213,13 @@ export default function Home() {
{currentVideo.username}
+
+
+ 标签
+
+ {currentVideo.tags?.replaceAll(",",",")}
+
+