mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 11:50:00 +00:00
Fixed Global Default Config Being Modified
This commit is contained in:
parent
60ac4a3e86
commit
35f2ebc2aa
@ -42,7 +42,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
### Fixed
|
### Fixed
|
||||||
- Solve an issue where module margins would appear when the first module of a section was hidden.
|
- Solve an issue where module margins would appear when the first module of a section was hidden.
|
||||||
- Solved visual display errors on chrome, if all modules in one of the right sections are hidden.
|
- Solved visual display errors on chrome, if all modules in one of the right sections are hidden.
|
||||||
- Module default config values are no longer modified when setting config values.
|
- Global and Module default config values are no longer modified when setting config values.
|
||||||
- Hide a region if all modules in a region are hidden. Prevention unwanted margins.
|
- Hide a region if all modules in a region are hidden. Prevention unwanted margins.
|
||||||
- Replaced `electron-prebuilt` package with `electron` in order to fix issues that would happen after 2017.
|
- Replaced `electron-prebuilt` package with `electron` in order to fix issues that would happen after 2017.
|
||||||
- Documentation of alert module
|
- Documentation of alert module
|
||||||
|
@ -295,7 +295,7 @@ var MM = (function() {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
config = Object.assign(defaults, config);
|
config = Object.assign({}, defaults, config);
|
||||||
};
|
};
|
||||||
|
|
||||||
/* setSelectionMethodsForModules()
|
/* setSelectionMethodsForModules()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user