diff --git a/packages/app/src/components/ResourceTable.astro b/packages/app/src/components/ResourceTable.astro index 5e7e7e81..b6d7438a 100644 --- a/packages/app/src/components/ResourceTable.astro +++ b/packages/app/src/components/ResourceTable.astro @@ -52,18 +52,44 @@ function followSearch(params: Record) { resources.map((r) => ( - {formatInTimeZone(new Date(r.createdAt), 'Asia/Shanghai', 'yyyy-MM-dd HH:mm')} + + {formatInTimeZone(new Date(r.createdAt), 'Asia/Shanghai', 'yyyy-MM-dd HH:mm')} +
- - {r.title} - + + {['動畫', '季度全集', '日劇', '特攝'].includes(r.type) ? ( + <> + + {r.title} + + + + ) : ( + + {r.title} + + )} +