{item.title}
- ({formatTimeToChatTime(item.time)})
+ ({t(formatTimeToChatTime(item.time) as any).replace('#', ':')})
{!item.read && (
)}
diff --git a/projects/app/src/pages/app/detail/components/Publish/FeiShu/index.tsx b/projects/app/src/pages/app/detail/components/Publish/FeiShu/index.tsx
index 6e89f2c64..44c0bf2e1 100644
--- a/projects/app/src/pages/app/detail/components/Publish/FeiShu/index.tsx
+++ b/projects/app/src/pages/app/detail/components/Publish/FeiShu/index.tsx
@@ -147,7 +147,7 @@ const FeiShu = ({ appId }: { appId: string }) => {
)}
|
{item.lastTime
- ? t(formatTimeToChatTime(item.lastTime) as any)
+ ? t(formatTimeToChatTime(item.lastTime) as any).replace('#', ':')
: t('common:common.Un used')}
|
diff --git a/projects/app/src/pages/app/detail/components/Publish/Link/index.tsx b/projects/app/src/pages/app/detail/components/Publish/Link/index.tsx
index ef5c5e3f8..0635a5cba 100644
--- a/projects/app/src/pages/app/detail/components/Publish/Link/index.tsx
+++ b/projects/app/src/pages/app/detail/components/Publish/Link/index.tsx
@@ -150,7 +150,9 @@ const Share = ({ appId }: { appId: string; type: PublishChannelEnum }) => {
>
)}
|
- {item.lastTime ? formatTimeToChatTime(item.lastTime) : t('common:common.Un used')}
+ {item.lastTime
+ ? t(formatTimeToChatTime(item.lastTime) as any).replace('#', ':')
+ : t('common:common.Un used')}
|
|