From 10ea885d8de6119c30d6b10e1c96af0e30e1b5ab Mon Sep 17 00:00:00 2001 From: Cory McWilliams Date: Wed, 22 Mar 2023 01:19:53 +0000 Subject: [PATCH] Show the username in the apps list. git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@4243 ed5197a5-7fde-0310-b194-c3ffbd925b24 --- apps/apps/app.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/apps/app.js b/apps/apps/app.js index 92e176e4..6fcba94f 100644 --- a/apps/apps/app.js +++ b/apps/apps/app.js @@ -38,7 +38,7 @@ async function main() { -

Apps

+

Apps

Core Apps

@@ -66,6 +66,7 @@ async function main() { div.appendChild(a); } } + document.getElementById('apps_title').innerText = "~${escape(core.user.credentials?.session?.name)}'s Apps"; populate_apps('apps', '${core.user.credentials?.session?.name}', ${JSON.stringify(apps)}); populate_apps('core_apps', 'core', ${JSON.stringify(core_apps)});