jaeyun0503 commented on code in PR #3675:
URL: https://github.com/apache/texera/pull/3675#discussion_r2286637094


##########
core/gui/src/app/dashboard/component/admin/user/admin-user.component.ts:
##########
@@ -195,6 +195,13 @@ export class AdminUserComponent implements OnInit {
     return Date.now() - lastMs < AdminUserComponent.ACTIVE_WINDOW;
   }
 
+  getAccCreation(user: User): number {
+    if (!user.accCreation) {
+      return 0;
+    }
+    return user.accCreation * 1000;

Review Comment:
   @aicam Because this timestamp is in epoch seconds(ms), so multiplying by 
1000 converts it into a regular timestamp.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to