Skip to content

Commit 6272b52

Browse files
committed
fix: add missing cls
1 parent 2c4e467 commit 6272b52

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/panels/WeekPanel/index.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,9 @@ function WeekPanel<DateType>(props: WeekPanelProps<DateType>) {
5050
}
5151
}}
5252
>
53-
{generateConfig.locale.getWeek(locale.locale, date)}
53+
<div className={`${cellPrefixCls}-inner`}>
54+
{generateConfig.locale.getWeek(locale.locale, date)}
55+
</div>
5456
</td>
5557
);
5658
};

0 commit comments

Comments
 (0)