Fixed mergedConfig misbehaving on first boot

add-comptability-redirects
Henry Jameson 3 years ago
parent 38d9ea8b17
commit 63c22ad131

@ -93,7 +93,8 @@ const config = {
const { defaultConfig } = rootGetters
return {
...defaultConfig,
...state
// Do not override with undefined
...Object.fromEntries(Object.entries(state).filter(([k, v]) => v !== undefined))
}
}
},

Loading…
Cancel
Save