More things work now
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 34s

This commit is contained in:
2026-04-27 00:42:14 +02:00
parent 2b07cc98a6
commit c7aac117c7
16 changed files with 607 additions and 59 deletions

View File

@@ -55,12 +55,12 @@ function EditProfile(){
}
function EditSettings(){
ClearWindow('main_menu');
ClearWindow({type: 'main_menu'});
CreateWindow('settings', {
id: 'settings',
type: 'settings',
title: 'settings.title',
back: () => { ClearWindow('settings'); CreateWindow('main_menu'); }
back: () => { ClearWindow({type: 'settings'}); CreateWindow({type: 'main_menu'}); }
});
}