diff --git a/src/gui/src/UI/UIWindowSessionList.js b/src/gui/src/UI/UIWindowSessionList.js index 751f2e185..023b55465 100644 --- a/src/gui/src/UI/UIWindowSessionList.js +++ b/src/gui/src/UI/UIWindowSessionList.js @@ -28,15 +28,17 @@ async function UIWindowSessionList(options){ return new Promise(async (resolve) => { let h = ''; h += `
`; - h += `
${i18n('signing_in')}
` - h += `
`; - h += `

${i18n('sign_in_with_puter')}

` - for (let index = 0; index < window.logged_in_users.length; index++) { - const l_user = window.logged_in_users[index]; - h += `
${l_user.username}
`; - } + // loading indicator + h += `
${i18n('signing_in')}
`; + // session list + h += `
`; + h += `

${i18n('sign_in_with_puter')}

` + for (let index = 0; index < window.logged_in_users.length; index++) { + const l_user = window.logged_in_users[index]; + h += `
${l_user.username}
`; + } h += `
`; - + // c2a h += `
`; h += `
`;