From 0218087adc9e957d928fa4be3f781dbaaef321f5 Mon Sep 17 00:00:00 2001 From: Brian Lovin Date: Sat, 24 Nov 2018 11:15:16 -0800 Subject: [PATCH 1/2] Show composer on trending tab --- src/views/community/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/views/community/index.js b/src/views/community/index.js index 1a4223e06d..89f0ba7daa 100644 --- a/src/views/community/index.js +++ b/src/views/community/index.js @@ -383,7 +383,8 @@ class CommunityView extends React.Component { // and is a member of the community, they should see a // new thread composer isLoggedIn && - selectedView === 'threads' && + (selectedView === 'threads' || + selectedView === 'trending-threads') && userHasPermissions && ( Date: Sat, 24 Nov 2018 11:22:48 -0800 Subject: [PATCH 2/2] Match reputation label styling --- src/views/navbar/style.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/views/navbar/style.js b/src/views/navbar/style.js index 23e54e5d2e..3ffbe86edf 100644 --- a/src/views/navbar/style.js +++ b/src/views/navbar/style.js @@ -216,6 +216,8 @@ export const Reputation = styled.div` grid-area: icon; align-items: center; padding-right: 16px; + font-size: 14px; + font-weight: 700; `; export const Logo = styled(Tab)`