Skip to content

Commit 8110363

Browse files
committed
Git-2421:Fixed-Rename Channels and Posts to Discussions
1 parent 93259ca commit 8110363

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/projects/detail/components/ProjectStageTabs/ProjectStageTabs.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const ProjectStageTabs = ({
2424

2525
tabs.push({
2626
onClick: () => onTabClick('posts'),
27-
label: 'Posts',
27+
label: 'discussions',
2828
isActive: activeTab === 'posts',
2929
hasNotifications: hasReadPosts,
3030
})

src/projects/detail/containers/FeedContainer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ class FeedView extends React.Component {
426426
/>
427427

428428
<Section>
429-
<SectionTitle title="Posts" />
429+
<SectionTitle title="Discussions" />
430430
<div>
431431
<MediaQuery minWidth={SCREEN_BREAKPOINT_MD}>
432432
<NewPost

src/projects/detail/containers/ProjectInfoContainer.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ class ProjectInfoContainer extends React.Component {
131131
address: attachment.downloadUrl,
132132
}))
133133

134-
const channels = feeds.map((feed) => ({
134+
const discussions = feeds.map((feed) => ({
135135
title: `${feed.title}`,
136136
address: `/projects/${project.id}#feed-${feed.id}`,
137137
noNewPage: true,
@@ -157,8 +157,8 @@ class ProjectInfoContainer extends React.Component {
157157
/>
158158
}
159159
<LinksMenu
160-
links={channels}
161-
title="Channels"
160+
links={discussions}
161+
title="Discussions"
162162
moreText="view all"
163163
noDots
164164
withHash

0 commit comments

Comments
 (0)