aktueller Stand

This commit is contained in:
root
2025-11-09 14:46:36 +01:00
parent cd93800ffb
commit e90f9299c3
4 changed files with 46 additions and 8 deletions

View File

@@ -59,13 +59,14 @@ function mergeStoresIntoConfig(config = [], stores = []) {
}
const id = String(store.id);
if (!map.has(id)) {
const hideByDefault = store.hasPickupSlots === false;
map.set(id, {
id,
label: store.name || `Store ${id}`,
active: false,
checkProfileId: true,
onlyNotify: false,
hidden: false
hidden: hideByDefault
});
changed = true;
return;