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

linxinyuan pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/texera.git


The following commit(s) were added to refs/heads/main by this push:
     new b0075f6350 feat: display datasets version creation timestamp (#3803)
b0075f6350 is described below

commit b0075f6350e86ed363209350f2a31ca6a4b48b9a
Author: Xuan Gu <[email protected]>
AuthorDate: Wed Oct 1 16:39:57 2025 -0700

    feat: display datasets version creation timestamp (#3803)
    
    ### **Purpose**
    This PR (in addition to #3706) enhances the dataset version display by
    adding the creation timestamp alongside version size, giving users
    clearer context for when each version was created and reducing reliance
    on manual descriptions.
    
    ### **Changes**
    - Added creation timestamp display for dataset versions in `MM/dd/yyyy
    HH:mm:ss` format, using existing styling for consistent UI appearance.
    
    ### **Demonstration**
    <img width="1424" height="785" alt="timestamp"
    
src="https://github.com/user-attachments/assets/69809f85-9375-45fe-99f6-6d8503a06b93";
    />
---
 .../user/user-dataset/user-dataset-explorer/dataset-detail.component.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/core/gui/src/app/dashboard/component/user/user-dataset/user-dataset-explorer/dataset-detail.component.ts
 
b/core/gui/src/app/dashboard/component/user/user-dataset/user-dataset-explorer/dataset-detail.component.ts
index a7ae1e17d8..274fda9651 100644
--- 
a/core/gui/src/app/dashboard/component/user/user-dataset/user-dataset-explorer/dataset-detail.component.ts
+++ 
b/core/gui/src/app/dashboard/component/user/user-dataset/user-dataset-explorer/dataset-detail.component.ts
@@ -349,7 +349,7 @@ export class DatasetDetailComponent implements OnInit {
           this.currentDatasetVersionSize = data.size;
           if (typeof version.creationTime === "number") {
             const date = new Date(version.creationTime);
-            this.selectedVersionCreationTime = format(date, "MM/dd/yyyy");
+            this.selectedVersionCreationTime = format(date, "MM/dd/yyyy 
HH:mm:ss");
           }
           let currentNode = this.fileTreeNodeList[0];
           while (currentNode.type === "directory" && currentNode.children) {

Reply via email to