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>
|
||||
<span>{errors.name ? errors.name.message : null}</span>
|
||||
<RemirrorRichTextEditor
|
||||
value={watch("description")}
|
||||
value={
|
||||
watch("description") && watch("description") !== ""
|
||||
? watch("description")
|
||||
: watch("description_html")
|
||||
}
|
||||
placeholder="Describe the issue..."
|
||||
onBlur={() => {
|
||||
setIsSubmitting(true);
|
||||
|
Loading…
Reference in New Issue
Block a user