From 115cc51b163833e912d50adb792f553386985bea Mon Sep 17 00:00:00 2001 From: Arthur Lu Date: Wed, 19 Apr 2023 01:40:55 +0000 Subject: [PATCH] update user db keys --- scripts/account.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/account.js b/scripts/account.js index 402765d..79a0d9f 100644 --- a/scripts/account.js +++ b/scripts/account.js @@ -20,9 +20,9 @@ function buildResourceTable (object, tableid) { let used = row.insertCell(); used.innerText = `${object.used[element]}`; let val = row.insertCell(); - val.innerText = `${object.available[element]}`; + val.innerText = `${object.avail[element]}`; let total = row.insertCell(); - total.innerText = `${object.maximum[element]}`; + total.innerText = `${object.max[element]}`; }); } } \ No newline at end of file