forked from github/plane
fix: github description not appearing (#459)
This commit is contained in:
parent
d413dd1169
commit
27324ddd93
@ -132,7 +132,11 @@ export const IssueDescriptionForm: FC<IssueDetailsProps> = ({
|
|||||||
</div>
|
</div>
|
||||||
<span>{errors.name ? errors.name.message : null}</span>
|
<span>{errors.name ? errors.name.message : null}</span>
|
||||||
<RemirrorRichTextEditor
|
<RemirrorRichTextEditor
|
||||||
value={watch("description")}
|
value={
|
||||||
|
watch("description") && watch("description") !== ""
|
||||||
|
? watch("description")
|
||||||
|
: watch("description_html")
|
||||||
|
}
|
||||||
placeholder="Describe the issue..."
|
placeholder="Describe the issue..."
|
||||||
onBlur={() => {
|
onBlur={() => {
|
||||||
setIsSubmitting(true);
|
setIsSubmitting(true);
|
||||||
|
Loading…
Reference in New Issue
Block a user