Reorder challenge user list table.

This commit is contained in:
yukirij 2024-08-31 18:02:04 -07:00
parent 2d961550cb
commit 6d59c03652

View File

@ -753,14 +753,14 @@ const SCENES = {
buttons.push(UI.button(LANG("challenge"), callback)); buttons.push(UI.button(LANG("challenge"), callback));
rows.push([ rows.push([
UI.text(LANG("unranked")),
UI.text(data.users[r].handle), UI.text(data.users[r].handle),
UI.text(LANG("unranked")),
buttons, buttons,
]); ]);
} }
let tbody = UI.table_content( let tbody = UI.table_content(
[ LANG("rank"), LANG("handle"), "" ], [ LANG("handle"), LANG("rank"), "" ],
rows, rows,
); );