diff --git a/js/admin/dist/app.js b/js/admin/dist/app.js index c7c350183..eb2e3fcc1 100644 --- a/js/admin/dist/app.js +++ b/js/admin/dist/app.js @@ -18060,7 +18060,7 @@ System.register('flarum/components/BasicsPage', ['flarum/components/Page', 'flar var settings = app.data.settings; this.fields.forEach(function (key) { - return _this2.values[key] = m.prop(settings[key] || false); + return _this2.values[key] = m.prop(settings[key]); }); this.localeOptions = {}; diff --git a/js/admin/src/components/BasicsPage.js b/js/admin/src/components/BasicsPage.js index d5ccd3bd1..ac39abe1a 100644 --- a/js/admin/src/components/BasicsPage.js +++ b/js/admin/src/components/BasicsPage.js @@ -25,7 +25,7 @@ export default class BasicsPage extends Page { this.values = {}; const settings = app.data.settings; - this.fields.forEach(key => this.values[key] = m.prop(settings[key] || false)); + this.fields.forEach(key => this.values[key] = m.prop(settings[key])); this.localeOptions = {}; const locales = app.data.locales;