Ghost/ghost/admin/app/components/feedback-lexical/textarea.hbs
Djordje Vlaisavljevic 4af604a04f Updated feedback form copy
refs #3252
2023-05-22 21:37:05 +01:00

17 lines
521 B
Handlebars
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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 "Ive noticed that…"}}
@shouldFocus={{@shouldFocus}}
data-test-lexical-feedback-textarea
{{on "input" @updateFeedbackMessage}}
/>
</GhFormGroup>
</form>