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

aglinxinyuan 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 a38f0ecc31 fix(frontend): version history timestamp display (#4539)
a38f0ecc31 is described below

commit a38f0ecc31dd73427adbae6f969d5bde3a7c3b0b
Author: Xinyuan Lin <[email protected]>
AuthorDate: Mon Apr 27 19:35:28 2026 -0700

    fix(frontend): version history timestamp display (#4539)
    
    ### What changes were proposed in this PR?
    - update the version history timestamp format from `YY` to `yy`
    - use Angular’s calendar-year token so timestamps render correctly in
    the frontend
    
    ### Any related issues, documentation, discussions?
    Closes #4538
    
    ### How was this PR tested?
    Tested with test case.
    
    ### Was this PR authored or co-authored using generative AI tooling?
    No.
---
 .../component/left-panel/versions-list/versions-list.component.html     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/frontend/src/app/workspace/component/left-panel/versions-list/versions-list.component.html
 
b/frontend/src/app/workspace/component/left-panel/versions-list/versions-list.component.html
index 448c26bc75..bed3bd1567 100644
--- 
a/frontend/src/app/workspace/component/left-panel/versions-list/versions-list.component.html
+++ 
b/frontend/src/app/workspace/component/left-panel/versions-list/versions-list.component.html
@@ -53,7 +53,7 @@
             nzType="link"
             (click)="getVersion(row.vId, getDisplayedVersionId(i, l), i)"
             class="version-link">
-            {{row.creationTime | date:'MM/dd/YY HH:mm:ss'}}
+            {{row.creationTime | date:'MM/dd/yy HH:mm:ss'}}
           </button>
         </td>
       </tr>

Reply via email to