Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhiyuanSue committed Oct 20, 2023
1 parent 1a3445c commit 620b7c8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions rank/src/components/Rank/classRank.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const showUpdatetime = (props: any) => {
title: '最新数据更新时间',
centered: true,
width: '75%',
content: <div>{dayjs(props.latestUpdatedAt).format('YYYY-MM-DD HH:mm::ss')}</div>,
content: <div>{dayjs(props.latestUpdatedAt).format('YYYY-MM-DD HH:mm:ss')}</div>,
okText: '关闭',
okButtonProps: { style: { width: 120 } }
})
Expand Down Expand Up @@ -279,7 +279,7 @@ const ClassRoomRank = (props: IProps) => {
最新数据更新时间:
{props.latestUpdatedAt && (
<span style={{ marginLeft: 10, fontWeight: 'bold' }}>
{dayjs(props.latestUpdatedAt).format('YYYY-MM-DD HH:mm::ss')}
{dayjs(props.latestUpdatedAt).format('YYYY-MM-DD HH:mm:ss')}
</span>
)}
</span>
Expand Down
2 changes: 1 addition & 1 deletion web/src/components/ClassRoomRank/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ const ClassRoomRank = (props: IProps) => {
最新数据更新时间:
{props.latestUpdatedAt && (
<span style={{ marginLeft: 10, fontWeight: 'bold' }}>
{dayjs(props.latestUpdatedAt).format('YYYY-MM-DD HH:mm::ss')}
{dayjs(props.latestUpdatedAt).format('YYYY-MM-DD HH:mm:ss')}
</span>
)}
</span>
Expand Down
2 changes: 1 addition & 1 deletion web/src/layouts/DefaultLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function App() {
<Icon symbol="icon-autojiangbei" id="logo" />
<div className="logo-title">
{/* <span>{websiteTitle}</span> */}
<span>训练营</span>
<span>2023秋冬季os训练营</span>
</div>
</div>
<Contact isMobile={mobile} />
Expand Down

0 comments on commit 620b7c8

Please sign in to comment.