Fix an issue with solutions setting in module not updating in cache

Resolves MS-862 #Complete
This commit is contained in:
Ramon Wenger 2024-02-07 14:53:44 +01:00
parent 3cb566c599
commit 4005e0239f
1 changed files with 1 additions and 1 deletions

View File

@ -70,8 +70,8 @@ export default {
const fragment = MODULE_FRAGMENT;
const module = store.readFragment({ fragment, id });
const data = {
solutionsEnabled,
...module,
solutionsEnabled,
};
store.writeFragment({ fragment, data, id });
}