fix(tickets): update ticket detail links to include dashboard path

This commit is contained in:
mlogclub
2026-05-02 12:50:32 +08:00
parent c73b38d784
commit 8602072e66
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -92,7 +92,7 @@ function RiskTable({ title, description, items, emptyText }: RiskTableProps) {
<TableCell>{item.currentAssigneeName || "未指派"}</TableCell>
<TableCell>{item.updatedAt ? formatDateTime(item.updatedAt) : "—"}</TableCell>
<TableCell className="text-right">
<Link href={`/tickets/detail?id=${item.id}`} target="_blank" rel="noreferrer">
<Link href={`/dashboard/tickets/detail?id=${item.id}`} target="_blank" rel="noreferrer">
<Button variant="outline" size="sm">
</Button>