summaryrefslogtreecommitdiffstats
path: root/webapp/components/post_view/components/post_info.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/post_view/components/post_info.jsx')
-rw-r--r--webapp/components/post_view/components/post_info.jsx16
1 files changed, 8 insertions, 8 deletions
diff --git a/webapp/components/post_view/components/post_info.jsx b/webapp/components/post_view/components/post_info.jsx
index 06e7b33fd..74ce32817 100644
--- a/webapp/components/post_view/components/post_info.jsx
+++ b/webapp/components/post_view/components/post_info.jsx
@@ -388,16 +388,16 @@ export default class PostInfo extends React.Component {
let options;
if (isEphemeral) {
options = (
- <li className='col col__remove'>
+ <div className='col col__remove'>
{this.createRemovePostButton()}
- </li>
+ </div>
);
} else if (!isPending) {
const dropdown = this.createDropdown(isSystemMessage);
if (dropdown) {
options = (
- <li className='col col__reply'>
+ <div className='col col__reply'>
<div
className='dropdown'
ref='dotMenu'
@@ -406,7 +406,7 @@ export default class PostInfo extends React.Component {
</div>
{react}
{comments}
- </li>
+ </div>
);
}
}
@@ -424,8 +424,8 @@ export default class PostInfo extends React.Component {
}
return (
- <ul className='post__header--info'>
- <li className='col'>
+ <div className='post__header--info'>
+ <div className='col'>
<PostTime
eventTime={post.create_at}
sameUser={this.props.sameUser}
@@ -442,9 +442,9 @@ export default class PostInfo extends React.Component {
isFlagged={this.props.isFlagged}
isEphemeral={isEphemeral}
/>
- </li>
+ </div>
{options}
- </ul>
+ </div>
);
}
}