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
@@ -629,7 +629,7 @@ function RelatedTicketsSection({ conversation }: { conversation: AgentConversati
{tickets.map((ticket) => (
<Link
key={ticket.id}
href={`/tickets/detail?id=${ticket.id}`}
href={`/dashboard/tickets/detail?id=${ticket.id}`}
target="_blank"
rel="noreferrer"
className="block rounded-lg border border-border bg-background px-3 py-2 transition-colors hover:bg-muted/40"