fix(pricing): line break after period for video rule detail

This commit is contained in:
小鱼开发
2026-05-22 15:14:29 +08:00
parent 1cb1c0b387
commit 19a166a873
@@ -105,7 +105,12 @@ export default function PricingModal({ open, onClose }: PricingModalProps) {
<strong>{SOURCE_TYPE_LABELS[rule.sourceType] || rule.sourceType}</strong>
<span>
{contentType}{rule.unit} {rule.pointsPerUnit} {unitNum}{unitNum}
{rule.sourceType === 'video' ? '使用系统素材每个空镜额外消耗 2 积分。' : ''}
{rule.sourceType === 'video' && (
<>
<br />
使 2
</>
)}
</span>
</div>
);