diff --git a/public/scripts/preset-manager.js b/public/scripts/preset-manager.js index d46996d7a..5971ec2d6 100644 --- a/public/scripts/preset-manager.js +++ b/public/scripts/preset-manager.js @@ -278,7 +278,7 @@ class PresetManager { */ static async performMasterExport() { const sectionNames = Object.entries(this.masterSections).reduce((acc, [key, section]) => { - acc[key] = section.name; + acc[key] = { key: key, name: section.name, checked: key !== 'preset' }; return acc; }, {}); const html = $(await renderTemplateAsync('masterExport', { sections: sectionNames })); diff --git a/public/scripts/templates/masterExport.html b/public/scripts/templates/masterExport.html index 55491aef5..7eede9883 100644 --- a/public/scripts/templates/masterExport.html +++ b/public/scripts/templates/masterExport.html @@ -3,9 +3,15 @@
{{#each sections}} - + {{#with this}} + + {{/with}} {{/each}}