Skip to content
Snippets Groups Projects
Commit df3210fd authored by lehtint6's avatar lehtint6
Browse files

Force flag values to exist for templates

parent 2042bc17
No related branches found
No related tags found
No related merge requests found
......@@ -30,7 +30,7 @@ Package.initialize = function (req, params, handlers, cb) {
let config = content[params.name];
if (config) {
config.mutationObserver = true;
config.resetButton = true;
config.resetButton = config.resetButton !== undefined ? config.resetButton : true;
}
cb(config);
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment