This is an automated email from the ASF dual-hosted git repository.

czy006 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/amoro.git


The following commit(s) were added to refs/heads/master by this push:
     new 619bade2e [AMORO-3299] Fix the problem that the commit time of the 
file is displayed incorrectly (#3604)
619bade2e is described below

commit 619bade2e668e068c58be9c3d3cdcd10dc4fcffa
Author: zhangwl9 <[email protected]>
AuthorDate: Mon Jun 9 17:59:17 2025 +0800

    [AMORO-3299] Fix the problem that the commit time of the file is displayed 
incorrectly (#3604)
    
    Fix the problem that the commit time of the file is displayed incorrectly
    
    Co-authored-by: 张文领 <[email protected]>
---
 amoro-web/src/views/tables/components/Files.vue | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/amoro-web/src/views/tables/components/Files.vue 
b/amoro-web/src/views/tables/components/Files.vue
index b4c38702a..8dc28e0b1 100644
--- a/amoro-web/src/views/tables/components/Files.vue
+++ b/amoro-web/src/views/tables/components/Files.vue
@@ -135,7 +135,7 @@ async function getFiles() {
     const { list, total } = result
     breadcrumbPagination.total = total;
     (list || []).forEach((p: BreadcrumbPartitionItem) => {
-      p.commitTime = p.commitTime ? dateFormat(p.commitTime) : ''
+      p.commitTime = p.commitTime && p.commitTime !== -1 ? 
dateFormat(p.commitTime) : ''
       breadcrumbDataSource.push(p)
     })
   }

Reply via email to