mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-09-03 02:35:12 +00:00
fix comment replies (#7367)
This commit is contained in:
parent
18619cac20
commit
44fd8349a7
1 changed files with 1 additions and 15 deletions
|
@ -164,7 +164,7 @@ export function CommentCreate(props: Props) {
|
||||||
function handleCommentChange(event) {
|
function handleCommentChange(event) {
|
||||||
let commentValue;
|
let commentValue;
|
||||||
if (isReply) {
|
if (isReply) {
|
||||||
commentValue = event.target.value;
|
commentValue = advancedEditor ? event : event.target.value;
|
||||||
} else {
|
} else {
|
||||||
commentValue = advancedEditor ? event : event.target.value;
|
commentValue = advancedEditor ? event : event.target.value;
|
||||||
}
|
}
|
||||||
|
@ -596,20 +596,6 @@ export function CommentCreate(props: Props) {
|
||||||
setActiveTab(TAB_LBC);
|
setActiveTab(TAB_LBC);
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
{/* @if TARGET='web' */}
|
|
||||||
{stripeEnvironment && (
|
|
||||||
<Button
|
|
||||||
disabled={disabled}
|
|
||||||
button="alt"
|
|
||||||
className="thisButton"
|
|
||||||
icon={ICONS.FINANCE}
|
|
||||||
onClick={() => {
|
|
||||||
setIsSupportComment(true);
|
|
||||||
setActiveTab(TAB_FIAT);
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
)}
|
|
||||||
{/* @endif */}
|
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
{isReply && !minTip && (
|
{isReply && !minTip && (
|
||||||
|
|
Loading…
Add table
Reference in a new issue