diff --git a/frontend/src/pages/SocialInsurance.tsx b/frontend/src/pages/SocialInsurance.tsx
index 76c90ef..2528129 100644
--- a/frontend/src/pages/SocialInsurance.tsx
+++ b/frontend/src/pages/SocialInsurance.tsx
@@ -388,7 +388,7 @@ export default function SocialInsurance() {
diff --git a/frontend/src/pages/social-insurance/MonthlyRows.tsx b/frontend/src/pages/social-insurance/MonthlyRows.tsx
index 815e2c5..664f00f 100644
--- a/frontend/src/pages/social-insurance/MonthlyRows.tsx
+++ b/frontend/src/pages/social-insurance/MonthlyRows.tsx
@@ -61,7 +61,7 @@ export function MonthlyRow({ item: i, type, onCorrected }: { item: any; type: 'a
{d ? `¥${fmt(d.totalOrg)}` : '-'} |
{d ? `¥${fmt(d.totalEmp)}` : '-'} |
{d ? `¥${fmt(d.total)}` : '-'} |
- {type === 'add' ? `${i.startMonth} →` : type === 'sub' ? `→ ${i.endMonth}` : `${i.startMonth} ~ ${i.endMonth || '在保'}`} |
+ {type === 'add' ? `${i.startMonth} →` : type === 'sub' ? `→ ${i.endMonth}` : `${i.startMonth} ~ ${i.endMonth || '在保'}`} |
{expanded && d && (
@@ -148,7 +148,7 @@ export function MonthlyHousingRow({ item: i, type, onCorrected }: { item: any; t
| {d ? `¥${fmt(d.orgAmount)}` : '-'} |
{d ? `¥${fmt(d.empAmount)}` : '-'} |
{d ? `¥${fmt(d.total)}` : '-'} |
- {type === 'add' ? `${i.startMonth} →` : type === 'sub' ? `→ ${i.endMonth}` : `${i.startMonth} ~ ${i.endMonth || '在保'}`} |
+ {type === 'add' ? `${i.startMonth} →` : type === 'sub' ? `→ ${i.endMonth}` : `${i.startMonth} ~ ${i.endMonth || '在保'}`} |
)
}