summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDessalines <happydooby@gmail.com>2019-05-19 09:34:27 -0700
committerDessalines <happydooby@gmail.com>2019-05-19 09:34:27 -0700
commit811bcb42b3a30984775b909f54bd8da7e66b4b88 (patch)
treecb622241669373ea3abdb95c97dde076387dc8c1
parent8a5b7258d6ea2255bc30e96a651d870b43c4c983 (diff)
Moving create post to below unsubscribe.
-rw-r--r--ui/src/components/sidebar.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/src/components/sidebar.tsx b/ui/src/components/sidebar.tsx
index 8d1459d5..6532bc05 100644
--- a/ui/src/components/sidebar.tsx
+++ b/ui/src/components/sidebar.tsx
@@ -115,14 +115,14 @@ export class Sidebar extends Component<SidebarProps, SidebarState> {
<li class="list-inline-item"><Link class="text-info" to={`/u/${mod.user_name}`}>{mod.user_name}</Link></li>
)}
</ul>
+ <Link class="btn btn-sm btn-secondary btn-block mb-3"
+ to={`/create_post/c/${community.name}`}>Create a Post</Link>
<div>
{community.subscribed
? <button class="btn btn-sm btn-secondary btn-block mb-3" onClick={linkEvent(community.id, this.handleUnsubscribe)}>Unsubscribe</button>
: <button class="btn btn-sm btn-secondary btn-block mb-3" onClick={linkEvent(community.id, this.handleSubscribe)}>Subscribe</button>
}
</div>
- <Link class="btn btn-sm btn-secondary btn-block mb-3"
- to={`/create_post/c/${community.name}`}>Create a Post</Link>
{community.description &&
<div>
<hr />