fix comment-tab
This commit is contained in:
@ -909,4 +909,8 @@
|
||||
padding: 40px 20px;
|
||||
color: #656d76;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.chat-message.comment-style {
|
||||
border-left: 4px solid var(--theme-color);
|
||||
}
|
@ -1493,10 +1493,9 @@ function App() {
|
||||
</div>
|
||||
)}
|
||||
|
||||
{/* Comment Form - Only show on post pages */}
|
||||
{user && appConfig.rkey && (
|
||||
{/* Comment Form - Only show on post pages when Comments tab is active */}
|
||||
{user && appConfig.rkey && activeTab === 'comments' && (
|
||||
<div className="comment-form">
|
||||
<h3>Post a Comment</h3>
|
||||
<textarea
|
||||
id="comment-text"
|
||||
name="commentText"
|
||||
|
Reference in New Issue
Block a user