A lot of progress
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 36s

This commit is contained in:
2026-04-28 00:20:15 +02:00
parent b928212608
commit 76bb9fbb30
38 changed files with 382 additions and 460 deletions

View File

@@ -23,12 +23,6 @@ const defWindows = {
component: () => import('~/components/windows/MainMenuWindow.vue'),
movable: true
},
edit_profile: {
title: "windows.edit-profile",
component: () => import('~/components/windows/EditProfileWindow.vue'),
close: () => ClearWindow({type: 'edit_profile'}),
movable: true
},
settings: {
title: "windows.settings",
component: () => import('~/components/windows/SettingsWindow.vue'),

View File

@@ -224,7 +224,6 @@ function CreateChildWindow(parentId, type, data = {}) {
if (parent.children) parent.children.push(newId); // We will create the child window right now
else parent.children = [newId];
CreateWindow(type, data);
console.log(windows.value);
}
function GetFirstWindowId(type) {