Fix: admin panel joined date

This commit is contained in:
hyzen
2026-06-19 19:01:48 +05:30
parent 60ab02dce2
commit cf781ee56b
2 changed files with 2 additions and 2 deletions

View File

@@ -64,7 +64,7 @@
'</tr>';
function userRow(u) {
var joined = new Date(u.created_at).toLocaleDateString();
var joined = new Date(u.created_at).toLocaleDateString('en-GB');
var blocked = u.blocked === true || u.blocked === 't' || u.blocked === '1';
var status = blocked
? '<span class="admin-badge admin-badge--blocked">Blocked</span>'