From 6d59c0365251f594edd3b602671acd8e7ffcc99a Mon Sep 17 00:00:00 2001 From: yukirij Date: Sat, 31 Aug 2024 18:02:04 -0700 Subject: [PATCH] Reorder challenge user list table. --- www/js/scene.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/js/scene.js b/www/js/scene.js index 095864e..93d3c2a 100644 --- a/www/js/scene.js +++ b/www/js/scene.js @@ -753,14 +753,14 @@ const SCENES = { buttons.push(UI.button(LANG("challenge"), callback)); rows.push([ - UI.text(LANG("unranked")), UI.text(data.users[r].handle), + UI.text(LANG("unranked")), buttons, ]); } let tbody = UI.table_content( - [ LANG("rank"), LANG("handle"), "" ], + [ LANG("handle"), LANG("rank"), "" ], rows, );