mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-09-02 02:05:11 +00:00
add .section class on channel comments
This commit is contained in:
parent
e02f021b73
commit
46a85bec6b
2 changed files with 9 additions and 5 deletions
|
@ -874,4 +874,4 @@
|
||||||
"Creating a lbry.tv account will allow you to earn rewards, receive content and security updates, and optionally backup your data.": "Creating a lbry.tv account will allow you to earn rewards, receive content and security updates, and optionally backup your data.",
|
"Creating a lbry.tv account will allow you to earn rewards, receive content and security updates, and optionally backup your data.": "Creating a lbry.tv account will allow you to earn rewards, receive content and security updates, and optionally backup your data.",
|
||||||
"Paid content cannot be embedded": "Paid content cannot be embedded",
|
"Paid content cannot be embedded": "Paid content cannot be embedded",
|
||||||
"This content cannot be embedded": "This content cannot be embedded"
|
"This content cannot be embedded": "This content cannot be embedded"
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,10 +10,14 @@ type Props = {
|
||||||
function ChannelDiscussion(props: Props) {
|
function ChannelDiscussion(props: Props) {
|
||||||
const uri = props.uri;
|
const uri = props.uri;
|
||||||
return (
|
return (
|
||||||
<section className="card--section">
|
<div className="card--section">
|
||||||
<CommentCreate uri={uri} />
|
<section className="section">
|
||||||
<CommentsList uri={uri} />
|
<CommentCreate uri={uri} />
|
||||||
</section>
|
</section>
|
||||||
|
<section className="section">
|
||||||
|
<CommentsList uri={uri} />
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue