feat: add extra field display in UsageFooter component for normal mode (#1137)

This commit is contained in:
Bowen Han
2026-03-07 05:16:43 -08:00
committed by GitHub
parent a89f433dde
commit 078a81b867
+7
View File
@@ -180,6 +180,13 @@ const UsageFooter: React.FC<UsageFooterProps> = ({
{firstUsage.unit}
</span>
)}
{/* 扩展字段 extra */}
{firstUsage.extra && (
<span className="text-gray-500 dark:text-gray-400 truncate max-w-[150px]" title={firstUsage.extra}>
{firstUsage.extra}
</span>
)}
</div>
</div>
);