improve: replace long line of words with clipboard button (#95)

* improve: replace long line of words with clipboard button

* change module path
This commit is contained in:
UUBulb
2025-01-06 21:02:39 +08:00
committed by GitHub
parent b88102b4aa
commit c883aba1fc
7 changed files with 64 additions and 9 deletions
+2 -1
View File
@@ -1,6 +1,7 @@
import { swrFetcher } from "@/api/api"
import { deleteCron, runCron } from "@/api/cron"
import { ActionButtonGroup } from "@/components/action-button-group"
import { CopyButton } from "@/components/copy-button"
import { CronCard } from "@/components/cron"
import { HeaderButtonGroup } from "@/components/header-button-group"
import { Checkbox } from "@/components/ui/checkbox"
@@ -86,7 +87,7 @@ export default function CronPage() {
accessorKey: "command",
cell: ({ row }) => {
const s = row.original
return <div className="max-w-48 whitespace-normal break-words">{s.command}</div>
return <CopyButton text={s.command} />
},
},
{