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

This commit is contained in:
2026-06-26 00:54:30 +02:00
parent a70704bc0a
commit 5a488260b9
17 changed files with 678 additions and 76 deletions

View File

@@ -1913,7 +1913,7 @@ if (payloadNode) {
groups.forEach((group) => {
const apps = payload.apps.filter((app) => {
if (app.show_in_start_menu === false) {
if (app.show_in_start_menu === false || app.user_show_in_start_menu === false) {
return false;
}
@@ -2000,7 +2000,7 @@ if (payloadNode) {
};
payload.apps
.filter((app) => app.show_on_desktop !== false)
.filter((app) => app.user_show_on_desktop === true)
.forEach((app) => {
const icon = document.createElement('button');
icon.type = 'button';