Skip to content
This repository was archived by the owner on Oct 11, 2022. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions src/views/dashboard/components/communityList.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ class CommunityList extends React.Component<Props> {
<Reputation
ignoreClick
size={'mini'}
tipText={`Rep in ${c.name}`}
tipText={`Your rep in ${c.name}`}
reputation={c.communityPermissions.reputation}
/>
</CommunityListMeta>
Expand Down Expand Up @@ -169,4 +169,7 @@ class CommunityList extends React.Component<Props> {
}
}

export default compose(connect(), withRouter)(CommunityList);
export default compose(
connect(),
withRouter
)(CommunityList);
10 changes: 6 additions & 4 deletions src/views/dashboard/components/sidebarChannels.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ class SidebarChannels extends React.Component<Props> {
<Link to={`/${community.slug}`}>
<ChannelListItem>
<Icon glyph={'link'} size={24} />
<CommunityListName>Visit community</CommunityListName>
<CommunityListName>View community home</CommunityListName>
</ChannelListItem>
</Link>

Expand Down Expand Up @@ -214,6 +214,8 @@ class SidebarChannels extends React.Component<Props> {
}
}

export default compose(connect(), getCommunityChannels, viewNetworkHandler)(
SidebarChannels
);
export default compose(
connect(),
getCommunityChannels,
viewNetworkHandler
)(SidebarChannels);
3 changes: 1 addition & 2 deletions src/views/dashboard/style.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,7 @@ export const ChannelListItem = styled.div`
}

&:hover {
color: ${props =>
props.active ? props.theme.brand.alt : props.theme.text.default};
color: ${props => props.theme.brand.alt};
}

`;
Expand Down