mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-02 08:13:34 +03:00
9abd9fac71
no issue
18 lines
433 B
JavaScript
18 lines
433 B
JavaScript
import Component from '@glimmer/component';
|
|
import {action} from '@ember/object';
|
|
import {tracked} from '@glimmer/tracking';
|
|
|
|
export default class FeedbackLexicalPostCompleteFormComponent extends Component {
|
|
@tracked feedbackMessage = '';
|
|
|
|
@action
|
|
updateFeedbackMessage(event) {
|
|
this.feedbackMessage = event.target.value;
|
|
}
|
|
|
|
@action
|
|
resetFeedbackMessage() {
|
|
this.feedbackMessage = '';
|
|
}
|
|
}
|