Skip to content
This repository was archived by the owner on Oct 11, 2022. It is now read-only.

Commit 3f27d8b

Browse files
authored
Merge pull request #4329 from withspectrum/2.4.76
2.4.76
2 parents f752fe9 + 4bcea55 commit 3f27d8b

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Spectrum",
3-
"version": "2.4.75",
3+
"version": "2.4.76",
44
"license": "BSD-3-Clause",
55
"devDependencies": {
66
"@babel/preset-flow": "^7.0.0",

src/views/community/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,8 @@ class CommunityView extends React.Component<Props, State> {
383383
// and is a member of the community, they should see a
384384
// new thread composer
385385
isLoggedIn &&
386-
selectedView === 'threads' &&
386+
(selectedView === 'threads' ||
387+
selectedView === 'trending-threads') &&
387388
userHasPermissions && (
388389
<ErrorBoundary fallbackComponent={null}>
389390
<ThreadComposer

src/views/navbar/style.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,8 @@ export const Reputation = styled.div`
216216
grid-area: icon;
217217
align-items: center;
218218
padding-right: 16px;
219+
font-size: 14px;
220+
font-weight: 700;
219221
`;
220222

221223
export const Logo = styled(Tab)`

0 commit comments

Comments
 (0)