mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-23 17:47:24 +00:00
fix advanced text area (#7360)
This commit is contained in:
parent
ae682a4a33
commit
1929089fab
1 changed files with 1 additions and 1 deletions
|
@ -513,7 +513,7 @@ export function CommentCreate(props: Props) {
|
||||||
)}
|
)}
|
||||||
<FormField
|
<FormField
|
||||||
disabled={isFetchingChannels}
|
disabled={isFetchingChannels}
|
||||||
type={'textarea'}
|
type={advancedEditor ? 'markdown' : 'textarea'}
|
||||||
name={isReply ? 'content_reply' : 'content_description'}
|
name={isReply ? 'content_reply' : 'content_description'}
|
||||||
ref={formFieldRef}
|
ref={formFieldRef}
|
||||||
className={isReply ? 'content_reply' : 'content_comment'}
|
className={isReply ? 'content_reply' : 'content_comment'}
|
||||||
|
|
Loading…
Add table
Reference in a new issue