|
|
@ -74,17 +74,11 @@ const TopicView = (props) => { |
|
|
|
}, [topicId, topics]); |
|
|
|
|
|
|
|
return ( |
|
|
|
<Container id="topic-container" textAlign="center"> |
|
|
|
<Dimmer.Dimmable |
|
|
|
as={Container} |
|
|
|
id="topic-container" |
|
|
|
blurring |
|
|
|
dimmed={topicAuthorAddress === null && topicAuthor === null && timestamp === null} |
|
|
|
textAlign="center" |
|
|
|
className="list-item" |
|
|
|
> |
|
|
|
<Dimmer> |
|
|
|
<Loader /> |
|
|
|
</Dimmer> |
|
|
|
<Step.Group fluid> |
|
|
|
<Step key="topic-header-step-user"> |
|
|
|
<Icon name="user circle" size="big" inverted color="black" /> |
|
|
@ -98,7 +92,6 @@ const TopicView = (props) => { |
|
|
|
</Step.Title> |
|
|
|
</Step.Content> |
|
|
|
</Step> |
|
|
|
|
|
|
|
<Step key="topic-header-step-title"> |
|
|
|
<Step.Content> |
|
|
|
<Step.Title> |
|
|
@ -121,6 +114,7 @@ const TopicView = (props) => { |
|
|
|
</Step> |
|
|
|
</Step.Group> |
|
|
|
</Dimmer.Dimmable> |
|
|
|
</Container> |
|
|
|
); |
|
|
|
}; |
|
|
|
|
|
|
|