Skip to content

Commit de97701

Browse files
committed
fix(accounts): 修复统计弹窗时间范围按钮文字换行问题
1 parent df3cc96 commit de97701

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

web/src/pages/admin/AccountStatsModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ export function AccountStatsModal({
134134
>
135135
<Tabs.List>
136136
{(['7d', '30d', '90d', 'custom'] as const).map((p) => (
137-
<Tabs.Tab key={p} id={p}>
137+
<Tabs.Tab key={p} id={p} className="whitespace-nowrap">
138138
{t(`accounts.stats_range_${p}`)}
139139
</Tabs.Tab>
140140
))}

0 commit comments

Comments
 (0)