Skip to content
Snippets Groups Projects
Commit 10483c1e authored by Patrick Jentsch's avatar Patrick Jentsch
Browse files

Fix Date display issue in UserList

parent 4950a407
No related branches found
No related tags found
No related merge requests found
......@@ -50,7 +50,7 @@ class UserList extends RessourceList {
id_: user.id,
username: user.username,
email: user.email,
last_seen: new Date(user.last_seen * 1000).toLocaleString("en-US"),
last_seen: new Date(user.last_seen).toLocaleString("en-US"),
role: user.role.name};
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment