Toggle navigation
Toggle navigation
This project
Loading...
Sign in
developOne
/
harmonyPool
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
陈剑华
2024-05-20 17:33:33 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
b1296a863513335e84a5cd99c3d41686c36be883
b1296a86
1 parent
63085e25
feat: 16997 搜索结果页-稿件发布日期展示错误
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
sight_harmony/features/wdComponent/src/main/ets/components/cardCommon/CardSourceInfo.ets
sight_harmony/features/wdComponent/src/main/ets/components/cardCommon/CardSourceInfo.ets
View file @
b1296a8
...
...
@@ -53,7 +53,7 @@ export struct CardSourceInfo {
// .flexShrink(0);
// }
if (this.contentDTO.source) {
Text(DateTimeUtils.getCommentTime(Number.parseFloat(
this.contentDTO.publishTime
)))
Text(DateTimeUtils.getCommentTime(Number.parseFloat(
new Date(this.contentDTO.publishTime).getTime().toString()
)))
.fontSize($r("app.float.font_size_11"))
.fontColor($r("app.color.color_B0B0B0"))
.flexShrink(0);
...
...
Please
register
or
login
to post a comment