mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-27 03:26:21 +08:00
Fixed the refs to the `setting` argument and refactored more of the component over to glimmer style, added test against regression
10 lines
227 B
JavaScript
Vendored
10 lines
227 B
JavaScript
Vendored
import SiteSettingComponent from "./site-setting";
|
|
|
|
export default class extends SiteSettingComponent {
|
|
_save() {
|
|
return this.setting.updateSetting(
|
|
this.args.model.id,
|
|
this.buffered.get("value")
|
|
);
|
|
}
|
|
}
|