Fix to the Fix
This commit is contained in:
parent
0bdbe2b681
commit
afe8416b73
1 changed files with 2 additions and 2 deletions
|
@ -44,7 +44,7 @@ export const load: LayoutLoad = async ({ fetch }) => {
|
||||||
|
|
||||||
if (typeof gameGroupSelections[gameSelection] === 'undefined') {
|
if (typeof gameGroupSelections[gameSelection] === 'undefined') {
|
||||||
// Default to all available groups
|
// Default to all available groups
|
||||||
gameGroupSelections[gameSelection] = { gameId: gameSelection, selectedGroups: Object.fromEntries(Object.values(Object.values(chellarisData.games)[gameSelection].groups).map((group) => group.id).entries()) };
|
gameGroupSelections[gameSelection] = { gameId: gameSelection, selectedGroups: Object.fromEntries(Object.values(chellarisData.games[gameSelection].groups).map((group) => group.id).entries()) };
|
||||||
|
|
||||||
// Set Local Storage to default Values if not previously defined
|
// Set Local Storage to default Values if not previously defined
|
||||||
localStorage.setItem('gameGroupSelection', JSON.stringify(gameGroupSelections));
|
localStorage.setItem('gameGroupSelection', JSON.stringify(gameGroupSelections));
|
||||||
|
@ -73,7 +73,7 @@ export const load: LayoutLoad = async ({ fetch }) => {
|
||||||
|
|
||||||
if (typeof gameGroupSelections[gameSelection] === 'undefined') {
|
if (typeof gameGroupSelections[gameSelection] === 'undefined') {
|
||||||
// Default to all available groups
|
// Default to all available groups
|
||||||
gameGroupSelections[gameSelection] = { gameId: gameSelection, selectedGroups: Object.fromEntries(Object.values(Object.values(chellarisData.games)[gameSelection].groups).map((group) => group.id).entries()) };
|
gameGroupSelections[gameSelection] = { gameId: gameSelection, selectedGroups: Object.fromEntries(Object.values(chellarisData.games[gameSelection].groups).map((group) => group.id).entries()) };
|
||||||
}
|
}
|
||||||
|
|
||||||
SelectedGameGroupsStore.set(gameGroupSelections);
|
SelectedGameGroupsStore.set(gameGroupSelections);
|
||||||
|
|
Reference in a new issue