feat: enhance review tooltip in firearm form for better user experience

This commit is contained in:
2026-04-25 15:29:24 +08:00
parent a66ed2e216
commit 49fbcb221c
+9 -1
View File
@@ -155,7 +155,15 @@ export default function FirearmsPage() {
<Typography.Paragraph <Typography.Paragraph
style={{ marginBottom: 0 }} style={{ marginBottom: 0 }}
type="secondary" type="secondary"
ellipsis={{ rows: 3 }} ellipsis={{
rows: 3,
tooltip: firearm.review
? {
title: <div style={{ whiteSpace: "pre-line" }}>{firearm.review}</div>,
placement: "topLeft",
}
: false,
}}
className="whitespace-pre-line"> className="whitespace-pre-line">
{firearm.review || "暂无描述"} {firearm.review || "暂无描述"}
</Typography.Paragraph> </Typography.Paragraph>