summaryrefslogtreecommitdiffstats
path: root/ui/src/components/create-community.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'ui/src/components/create-community.tsx')
-rw-r--r--ui/src/components/create-community.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/src/components/create-community.tsx b/ui/src/components/create-community.tsx
index a9345f72..5e31efc2 100644
--- a/ui/src/components/create-community.tsx
+++ b/ui/src/components/create-community.tsx
@@ -1,6 +1,7 @@
import { Component } from 'inferno';
import { CommunityForm } from './community-form';
import { Community } from '../interfaces';
+import { WebSocketService } from '../services';
export class CreateCommunity extends Component<any, any> {
@@ -10,7 +11,7 @@ export class CreateCommunity extends Component<any, any> {
}
componentDidMount() {
- document.title = "Create Community - Lemmy";
+ document.title = `Create Community - ${WebSocketService.Instance.site.name}`;
}
render() {