mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:47:31 +08:00
48193767bf
Automatically generated by `eslint --fix` to satisfy the updated configuration
23 lines
483 B
JavaScript
23 lines
483 B
JavaScript
import Component from "@ember/component";
|
|
import { action } from "@ember/object";
|
|
import { tagName } from "@ember-decorators/component";
|
|
|
|
@tagName("")
|
|
export default class AdminEditableField extends Component {
|
|
buffer = "";
|
|
editing = false;
|
|
|
|
@action
|
|
edit(event) {
|
|
event?.preventDefault();
|
|
this.set("buffer", this.value);
|
|
this.toggleProperty("editing");
|
|
}
|
|
|
|
@action
|
|
save() {
|
|
// Action has to toggle 'editing' property.
|
|
this.action(this.buffer);
|
|
}
|
|
}
|