asdasd
All checks were successful
Deploy / deploy-staging (push) Successful in 29s
Deploy / deploy-production (push) Has been skipped

This commit is contained in:
2026-06-22 01:51:56 +02:00
parent cfcb37ca7e
commit 7d4c3e4378
5 changed files with 63 additions and 5 deletions

View File

@@ -1736,6 +1736,18 @@ if (payloadNode) {
setAccountMenuOpen(accountMenu.hidden);
});
document.querySelectorAll('.tray-pill[data-tray-app-id]').forEach((button) => {
button.addEventListener('click', () => {
const appId = button.getAttribute('data-tray-app-id') || '';
const app = findAppById(appId);
if (app) {
openApp(app);
setStartMenuOpen(false);
setAccountMenuOpen(false);
}
});
});
debugToggleNode?.addEventListener('click', () => {
toggleDebugWindow();
});