fix(ticket): change description wrapper from div to span in TicketDetailDialog

This commit is contained in:
mlogclub
2026-05-03 12:12:54 +08:00
parent d181ff4947
commit 2f33783f7e
4 changed files with 2 additions and 779 deletions
@@ -252,11 +252,11 @@ export function TicketDetailDialog({
}
description={
ticket ? (
<div className="flex flex-wrap items-center gap-2 text-xs">
<span className="flex flex-wrap items-center gap-2 text-xs">
<span className="font-mono">{ticket.ticketNo}</span>
<span>{sourceLabel(ticket.source)}</span>
<span>{metadataValue(ticket.createdByName || ticket.createdBy)}</span>
</div>
</span>
) : undefined
}
size="xl"