[fix] lint errors + new version tag

This commit is contained in:
Purp1e
2025-03-27 21:17:19 +08:00
parent 5b7f763221
commit a66100bfaf
2 changed files with 3 additions and 3 deletions

View File

@@ -42,7 +42,7 @@
}, },
"productName": "CS工具箱", "productName": "CS工具箱",
"mainBinaryName": "cstb", "mainBinaryName": "cstb",
"version": "0.0.5", "version": "0.0.6-beta.1",
"identifier": "upup.cool", "identifier": "upup.cool",
"plugins": { "plugins": {
"deep-link": { "deep-link": {

View File

@@ -64,13 +64,13 @@ const ReleaseNotes = () => {
</Chip> */} </Chip> */}
<Chip size="sm" className="bg-zinc-200 dark:bg-white/10"> <Chip size="sm" className="bg-zinc-200 dark:bg-white/10">
{release?.created_at ? new Date(release.created_at).toLocaleString() : "未知时间"} {release.created_at ? new Date(release.created_at as string).toLocaleString() : "未知时间"}
</Chip> </Chip>
</span> </span>
</CardHeader> </CardHeader>
<CardBody className="gap-3"> <CardBody className="gap-3">
<div className=""> <div className="">
<MarkdownRender>{release?.content || "无内容"}</MarkdownRender> <MarkdownRender>{release.content || "无内容"}</MarkdownRender>
</div> </div>
</CardBody> </CardBody>
</Card> </Card>