Browse Source

fix: tiny ui fixes

develop
Ezerous 4 years ago
parent
commit
87ae802013
  1. 3
      packages/concordia-app/src/views/Topic/TopicView/index.jsx

3
packages/concordia-app/src/views/Topic/TopicView/index.jsx

@ -119,7 +119,6 @@ const TopicView = (props) => {
<Container id="topic-container"> <Container id="topic-container">
<Segment> <Segment>
<Dimmer.Dimmable <Dimmer.Dimmable
blurring
dimmed={topicAuthorAddress === null && topicAuthor === null && timestamp === null} dimmed={topicAuthorAddress === null && topicAuthor === null && timestamp === null}
> >
<div id="topic-header"> <div id="topic-header">
@ -160,7 +159,7 @@ const TopicView = (props) => {
<TopicPostList topicId={topicId} loading={postIds === null} focusOnPost={focusOnPost} /> <TopicPostList topicId={topicId} loading={postIds === null} focusOnPost={focusOnPost} />
</Segment> </Segment>
{topicSubject !== null && postIds !== null && hasSignedUp && ( {postIds !== null && hasSignedUp && (
<PostCreate <PostCreate
topicId={topicId} topicId={topicId}
postIndexInTopic={postIds.length + 1} postIndexInTopic={postIds.length + 1}

Loading…
Cancel
Save