mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-18 16:01:40 +03:00
4af604a04f
refs #3252
17 lines
521 B
Handlebars
17 lines
521 B
Handlebars
<form>
|
||
<GhFormGroup>
|
||
{{#if @label}}
|
||
<label for="feedback-lexical" class="sr-only">{{@label}}</label>
|
||
{{/if}}
|
||
<GhTextarea
|
||
@id="feedback-lexical"
|
||
@name="feedback-lexical"
|
||
@value={{@feedbackMessage}}
|
||
@placeholder={{or @placeholder "I’ve noticed that…"}}
|
||
@shouldFocus={{@shouldFocus}}
|
||
data-test-lexical-feedback-textarea
|
||
{{on "input" @updateFeedbackMessage}}
|
||
/>
|
||
</GhFormGroup>
|
||
</form>
|