discourse/app/assets/javascripts/admin/addon/components/theme-setting-editor.js
Alan Guo Xiang Tan 8d4f405da4
DEV: Allow typed objects theme settings to be saved via settings editor (#26100)
Why this change?

On the `/admin/customize/themes/<:id>` route, we allow admins to edit
all settings via a settings editor. Prior to this change, trying to edit
and save a typed objects theme settings will result in an error on the
server.
2024-03-11 08:42:12 +08:00

11 lines
222 B
JavaScript

import SiteSettingComponent from "./site-setting";
export default class extends SiteSettingComponent {
_save() {
return this.setting.updateSetting(
this.model.id,
this.get("buffered.value")
);
}
}