summaryrefslogtreecommitdiffstats
path: root/ui/src/components/communities.tsx
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2019-04-28 19:05:11 -0700
committerDessalines <tyhou13@gmx.com>2019-04-28 19:05:11 -0700
commit50dfcefc9564baa896de8b3f1efbcc61de7054f3 (patch)
tree9428fb57451ebf7d21e5799fdba49161a7fc35d2 /ui/src/components/communities.tsx
parent3c19843ce8b8f8582b09ba88e8d30bbc7b88cbc8 (diff)
Changing from forum to community
- Fixes #121
Diffstat (limited to 'ui/src/components/communities.tsx')
-rw-r--r--ui/src/components/communities.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/src/components/communities.tsx b/ui/src/components/communities.tsx
index b5233c22..1b4ec70f 100644
--- a/ui/src/components/communities.tsx
+++ b/ui/src/components/communities.tsx
@@ -45,7 +45,7 @@ export class Communities extends Component<any, CommunitiesState> {
}
componentDidMount() {
- document.title = "Forums - Lemmy";
+ document.title = "Communities - Lemmy";
let table = document.querySelector('#community_table');
Sortable.initTable(table);
}
@@ -56,7 +56,7 @@ export class Communities extends Component<any, CommunitiesState> {
{this.state.loading ?
<h5 class=""><svg class="icon icon-spinner spin"><use xlinkHref="#icon-spinner"></use></svg></h5> :
<div>
- <h5>Forums</h5>
+ <h5>Communities</h5>
<div class="table-responsive">
<table id="community_table" class="table table-sm table-hover">
<thead class="pointer">
@@ -73,7 +73,7 @@ export class Communities extends Component<any, CommunitiesState> {
<tbody>
{this.state.communities.map(community =>
<tr>
- <td><Link to={`/f/${community.name}`}>{community.name}</Link></td>
+ <td><Link to={`/c/${community.name}`}>{community.name}</Link></td>
<td>{community.title}</td>
<td>{community.category_name}</td>
<td class="text-right d-none d-md-table-cell">{community.number_of_subscribers}</td>