Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion framework/core/js/src/admin/components/AdminPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ export default abstract class AdminPage<CustomAttrs extends IPageAttrs = IPageAt
* with the setting key, which is used by `resetButton()` in the reset modal.
*/
setting(key: string, fallback: string = '', label?: Mithril.Children): Stream<string> {
this.settings[key] = this.settings[key] || Stream<string>(app.data.settings[key] || fallback);
this.settings[key] = this.settings[key] || Stream<string>(app.data.settings[key] ?? fallback);

if (label !== undefined) {
this.settingLabels[key] = label;
Expand Down
Loading