Fix launch cache sanitization and progress layout
Some checks failed
Build / release (macos-latest) (push) Has been cancelled
Build / release (ubuntu-latest) (push) Has been cancelled
Build / release (windows-latest) (push) Has been cancelled
Windows Smoke Test / windows-smoke (push) Has been cancelled

This commit is contained in:
2026-05-06 04:58:12 +09:00
parent e42ff9245c
commit 20677380b9
4 changed files with 81 additions and 1 deletions

View File

@@ -125,6 +125,10 @@ async function logoutSelectedAccount(){
* @param {boolean} loading True if the loading area should be shown, otherwise false.
*/
function toggleLaunchArea(loading){
if(typeof syncLaunchDetailWidths === 'function'){
syncLaunchDetailWidths()
}
if(loading){
launch_details.style.display = 'flex'
launch_content.style.display = 'none'
@@ -132,6 +136,12 @@ function toggleLaunchArea(loading){
launch_details.style.display = 'none'
launch_content.style.display = 'inline-flex'
}
window.requestAnimationFrame(() => {
if(typeof syncLaunchDetailWidths === 'function'){
syncLaunchDetailWidths()
}
})
}
/**